上一篇:《python 命名空间互换》
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 实例化对象》