1. 程式人生 > >python列表操作:追加元素到列表的代碼

python列表操作:追加元素到列表的代碼

pen 操作 get 列表操作 append app put cores raw_input

將做工程過程中常用的內容做個收藏,如下的內容是關於python列表操作:追加元素到列表的內容。

scores = ["1","2","3"]

# add a score
score = int(raw_input("What score did you get?: "))
scores.append(score)

# list high-score table
for score in scores:
       print score

python列表操作:追加元素到列表的代碼