1. max()函数
求list中的最大值
image.png
2.round()函数
截取一定的精度
image.png
3.help()函数
查看帮助文档
image.png
4.len()函数
计算list的长度
image.png
5.index()函数
取特定list元素的索引
image.png
6.count()函数
计算特定值在list中出现的次数
image.png
7.append()函数
在list的末尾添加一项内容
image.png