列表 list
在列表中存放多个数据 列表用中括号表示 []
创建一个列表 [],中间的每一项,用 ,(英文的逗号) 分隔开 a = [] # 创建了一个空的列表 print(type(a)) b = ['张三',28,100.86] print(type(b))
增加一个元素 函数:append
c = ['hello','python','linux','mysql','git'] c.append('你好') # 向列表c中增加一个元素 你好 print(c)
修改列表中某一个元素
c = ['hello','python','linux','mysql','git']
c[2] = 'centos' # 将列表中的第二个元素,修改为centos print(c)
删除列表中某一个元素 函数:del
c = ['hello','python','linux','mysql','git']
del c[3] # 删除列表中的第三个元素 print(c)
读取列表的某个元素,通过列表的下标 Index (从0开始)读取
c = ['hello','python','linux','mysql','git']
print( c[2] ) #读取第2个下标
统计出列表的长度(列表有多少个元素) 函数:len()
c = ['hello','python','linux','mysql','git']
print( len(c) )