Python 文档学习笔记2
数据结构——元组和序列
元组
- 元组在输出时总是有括号的
- 元组输入时可能没有括号
- 元组是不可变的
- 通过分拆(参阅本节后面的内容)或索引访问(如果是namedtuples,甚至可以通过属性)
- 特例(仅含0,1个元素)
>>> empty = ()
>>> singleton = 'hello', # <-- note trailing comma
>>> len(empty)
0
>>> len(singleton)
1
>>> singleton
('hello',)
序列分拆 >>> x, y, z = 12345, 54321, 'hello!'
本节结束
- 『越是想要,越是勇敢,有时如此,有时相反』