python中的字典遍历

来源:互联网 发布:网络直播泡沫 编辑:程序博客网 时间:2024/05/24 05:30
c={"u":234}c['g']=32for key in c:    print c[key]# output# 234# 32

0 0