列表字符串字典互转,enumerate
2021-07-02 17:06
标签:min 标识 列表 元祖 type list 数据 kong items max=[1,2,3,4,5,6,7,8,9,10] #字典转换成列表,数据成为元祖 kl=[‘alex‘,‘jack‘,‘tadd‘,‘moth‘] 列表字符串字典互转,enumerate 标签:min 标识 列表 元祖 type list 数据 kong items 原文地址:http://blog.51cto.com/12992048/2173897
max_str=str(max)
max_list=list(str(max))
print(str(max))
print (max_list)
print (type(max_str))
print (type(max_list))
infoo={‘on1‘:"张家辉",
‘on2‘:"xuwuming",
‘on3‘:"sunwukong"}
print(infoo.items())#把自己转换成列表
#[(‘on1‘, ‘张家辉‘), (‘on2‘, ‘xuwuming‘), (‘on3‘, ‘sunwukong‘)]enumerate
kl[1]=‘end‘
for i,j in enumerate(kl): #同时输出 标识与元素
print(i,j)
#0 alex
#1 end
#2 tadd
#3 moth
上一篇:双重检查锁实现单例(java)
下一篇:python编码
文章标题:列表字符串字典互转,enumerate
文章链接:http://soscw.com/index.php/essay/100883.html