python列表操作:追加元素到列表的代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python列表操作:追加元素到列表的代码相关的知识,希望对你有一定的参考价值。
将做工程过程中常用的内容做个收藏,如下的内容是关于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列表操作:追加元素到列表的代码的主要内容,如果未能解决你的问题,请参考以下文章