使用python将字符串拆分为两个字符串

时间:2014-05-08 09:31:15

标签: python python-2.7

我正在尝试读取包含此类数据的文件

['19df', 'b35d']
['fafa', 'bbaf']
['dce9', 'cf47']

...

我需要分成

i = 
19df
fafa
dce9 

q=
b35d
bbaf
cf47

我试过这样做,

for x in line:
    i, q = x[:len(x)/2], x[len(x)/2:]

无法拆分,请帮忙!

0 个答案:

没有答案