list.py
来自「this is the most basic to learn python」· Python 代码 · 共 18 行
PY
18 行
#: c01:list.py
list = [ 1, 3, 5, 7, 9, 11 ]
print list
list.append(13)
for x in list:
print x
#<hr>
output = '''
[1, 3, 5, 7, 9, 11]
1
3
5
7
9
11
13
'''
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?