0
点赞
收藏
分享

微信扫一扫

python中的字典遍历

书写经典 2023-01-07 阅读 143


c={"u":234}
c['g']=32
for key in c:
print c[key]
# output
# 234
# 32


举报

相关推荐

0 条评论