如何從字典分裂元組如何分割元組在Python
dic = {('K30', 'K56'): 1}
得到這個輸出的文本文件:
K30 K56 1
是我的嘗試是
for k,v in dic.items():
a,b = k.split(',')
print >>f, a+'\t',b+'\t',v
f.close()
但我得到了錯誤:
AttributeError: 'tuple' object has no attribute 'split'
或'爲(A,B), v in dic.items():' –