Python Codecademy 列表9课
Posted 十月的雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Codecademy 列表9课相关的知识,希望对你有一定的参考价值。
start_list = [5, 3, 1, 2, 4] square_list = [] # Your code here! for number in start_list: square_list.append(number**2) square_list.sort() print square_list
append() 方法用于在列表末尾添加新的对象。
append()方法语法:
list.append(obj)
以上是关于Python Codecademy 列表9课的主要内容,如果未能解决你的问题,请参考以下文章
Python Codecademy 9单元Battleship!
[Python]小甲鱼Python视频第011课(列表:一个打了激素的数组2)课后题及参考解答
codecademy练习记录--Learn Python(70%)