摘要:
字典 dic{key:value} #dict() #以键对方式构造字典 d1 = dict(one = 1, two = 2, a = 3) print(d1) #以映射函数方式来构造字典 d2 = dict(zip(['one', 'two', 'three'], [1, 2, 3])) pri 阅读全文
posted @ 2016-10-28 23:13
my-soul
阅读(328)
评论(0)
推荐(0)
2016年10月28日