Python版本: 2.6.6
知识点
Python List类型
Python 字符串小加密
练习题
0x01 Python List类型
基本
列表是Python中最基本的数据结构,列表中每一个内容都会有一个索引的数字...增加的 写法:
list=['one','two','three']
list.append('four') #将four内容增加到列表list中
结果:
>>> list
['one', 'two'..., 'three', 'four']
有增加就有删除,有两种删除数据的方法
>>> list
['one', 'two', 'three']
>>> del list[2] #第一种,删除索引为2的数据...'three'
>>> list[-2] #列表中倒数第二个内容
'two'
>>> list[1:] #从第二个开始截取列表
['two', 'three']
>>>
1x01 Python 字符串小加密...2x01练习题
1.a=[1,2,3,4,5,6,7,8,9,10] 将a中的奇数和偶数分开放到不同的列表中
list=[] #创建空列表
list2=[] #创建空列表
for i in range