python中的字典遍历

阅读 146

2023-01-07


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


相关推荐

精彩评论(0)

0 0 举报