摘要: ALTER TABLE 表名 DROP COLUMN 列名#删除某一列 阅读全文
posted @ 2018-05-31 14:29 Operater 阅读(197) 评论(0) 推荐(0) 编辑
摘要: def str2tuple(*str): return str # 字符串转元组 a='hh' b=str2tuple(a) print(b) #列表转字符串,前提是列表里是字符串 b=['hello','haha'] c=''.join(b) print(c) #列表转元祖 list1=[123,22,44,55] t1=tuple(list1) print(t1) #... 阅读全文
posted @ 2018-05-31 11:14 Operater 阅读(9982) 评论(0) 推荐(1) 编辑