int类型
-5 ~ 257 有优化机制
dict新建
li = [11,22,33]
dic = dict(enumerate(li, 10))
添加键值对:
dic = {}
dic.update({'k1':'v1'}) #两种方法都可以
dic['k1']='v1' #