标签:list ror typeerror traceback 查看 module trace item div
## 什么时候使用?? 数据类型相同, 用列表list #rwx文件 100个人的名字, 很多信息描述1个人, 用字典 dict [‘d?kt] 不能修改的重要数据 元组 tuple [?t?p?l] #只读文件 只能查看 (大体和list差不多)
In [18]: tuple1 = (11,22,33) In [19]: type(tuple1) Out[19]: tuple In [21]: tuple1[0] = 99 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-21-9f0cae5d4fd1> in <module>() ----> 1 tuple1[0] = 99 TypeError: ‘tuple‘ object does not support item assignment
标签:list ror typeerror traceback 查看 module trace item div
原文地址:http://www.cnblogs.com/venicid/p/7852365.html