文档:
我们以Google Python Exercises作为练习素材。
参考对应的文档
https://developers.google.com/edu/python/lists
以及
Runoob的Python Lists介绍
http://www.runoob.com/python/python-lists.html
练习:
下载https://developers.google.com/edu/python/google-python-exercises.zip,完成其中的basic目录下list1.py和list2.py中的练习。
我的练习:https://github.com/jinbin/google-python-exercises.git
Notes:
一、list.sort()没有返回值,但会对原列表进行排序
二、tuple (元组) http://www.runoob.com/python/python-tuples.html
Python的元组与列表类似,不同之处在于元组的元素不能修改。
元组使用小括号,列表使用方括号。元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可:
tup1=('physics','chemistry',1997,2000)
领取专属 10元无门槛券
私享最新 技术干货