##列表
###1、多个值组成的序列 2,[] 3,一个列表内:可多个类型的值并可以同时嵌套列表
####4、列表的值可赋值给变量 5、[]没有值就是空列表
#empty=[] #空列表
#num=[1,23,45,23] #数字列表
#cha=[‘hello‘,‘food‘,‘rich‘,‘rice‘,‘table‘] #字符串列表
#complete=[23,‘water‘,‘12‘,num] #各种类型元素的列表
#print(complete[2]) #打印出下标为2的元素
#complete[2]=122 #将下标为2的元素改变
#print(complete)
#print(‘rice‘in cha) #查看元素是否是cha列表的
#for i in cha: #用for循环来遍历列表
# print(i)
#for i in range(len(cha)): #用for循环。len函数来修改元素
# cha[i]=cha[i]
# print(cha[i])
#c=num+cha #加号+:拼接列表
#print(c)
#d=cha*3 #*:列表重复几次
#print(d)
#cha.append(123009) #append在列表添加一个元素
#print(cha)
#cha.append(complete[0:2])
#print(cha)
#cha.extend(num) #extend将列表当做元素加入列表
#print(cha)
#print(num.sort()) #sort:元素从小到大的排序
#import math
#def all_count(t):
# total=0
# for i in t:
# total+=i
# return total
#sum=[1,2,3,45,32]
#print(all_count(sum))
#print(math.fsum(sum)) #用sum函数来做和
原文:https://www.cnblogs.com/W-Devil/p/11671343.html