python List有关append&extend
>>> mylist = [‘a‘, ‘b‘] >>> mylist.append([‘c‘,‘d‘]) >>> mylist [‘a‘, ‘b‘, [‘c‘, ‘d‘]] >>> mylist.extend([‘e‘,‘f‘]) >>> mylist [‘a‘, ‘b‘, [‘c‘, ‘d‘], ‘e‘, ‘f‘]
>>> mylist.index(‘b‘) 1 >>> mylist.index([‘c‘,‘d‘]) 2
List运算中的 + 和 * >>> mylist [‘a‘, ‘b‘, [‘c‘, ‘d‘], ‘e‘, ‘f‘] >>> mylist = mylist + [‘g‘,‘h‘] >>> mylist [‘a‘, ‘b‘, [‘c‘, ‘d‘], ‘e‘, ‘f‘, ‘g‘, ‘h‘] >>> mylist += [‘i‘] >>> mylist [‘a‘, ‘b‘, [‘c‘, ‘d‘], ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘] >>> yourlist = [‘1‘,‘2‘,‘3‘] >>> yourlist = yourlist * 3 >>> yourlist [‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘2‘, ‘3‘] >>>
何谓 Python 中的 True:
- 0为false; 其它所有数值皆为 true。
- 空串 ("") 为false; 其它所有字符串皆为 true。
- 空list ([])为false; 其它所有字符串皆为 true。
- 空 tuple (()) 为false; 其它所有字符串皆为 true。
- 空 dictionary ({}) 为false; 其它所有字符串皆为 true。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。