摘要:
for file in ./tmp_data/* do echo $file mysql -u'root' -p'wangbin' --default-character-set=utf8 -e"load data local infile '$file' into table yiche.yiche_core fields terminated by ',' lines terminat... 阅读全文
摘要:
In [70]: test=dict(x=1,y=2,z=3) In [71]: test Out[71]: {'x': 1, 'y': 2, 'z': 3} In [72]: a=['a','b','c'] In [73]: b=[1,2,3] In [74]: zip(a,b) Out[74]: [('a', 1), ('b', 2), ('c', 3)] In [75]: dict(zi... 阅读全文