上一篇:《python 命名空间互换》


《python dict字典用法》

作者 vhaixingv 创建于 18-02-24 15:56:58
data = {'a':1, 'b':2, 'c':'hello'}

data = dict(a=1, b=2, c='hello')

当循环的时候:

for k, v in data.items():
    print '%s = %s' %(k, v)
    
输出:
'a = 1'
'b = 2'
'c = hello'



下一篇:《python 实例化对象》