就是在python中有一个带键值对的元组,能不能把他转化成一个字符串。。请各位大侠指教!!1举个例子。d={'name':'user','password':'123456'},转化后成str = nameuserpassword123456
3 回答
慕运维8079593
TA贡献1876条经验 获得超5个赞
如果是元组,应该是这样的:
t = ("abc","123","xyz")
print "".join(t)
print t
按照你的例子,是一个字典:
l=[]
d={'name':'user','password':'123456'}
for k,v in d.items():
l.extend([k,v])
print "".join(l)
qq_笑_17
TA贡献1818条经验 获得超7个赞
1 2 3 4 5 6 7 8 9 | a = [('k', 't', 'i', 'r'), ('l', 'u', 's', 't'), ('m', 'i', 'c', 'y'), ('e', 't', 'g', 'h')] >>> arr = [] >>> for z in a: arr.append(','.join(list(z))) >>> arr ['k,t,i,r', 'l,u,s,t', 'm,i,c,y', 'e,t,g,h'] >>> ';'.join(arr) 'k,t,i,r;l,u,s,t;m,i,c,y;e,t,g,h' >>> |
这样就可以了
添加回答
举报
0/150
提交
取消