码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-04-08 15:30:55      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:print   int   get   put   input   scores   cores   列表操作   pre   

将做工程过程中常用的内容做个收藏,如下的内容是关于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列表操作:追加元素到列表的代码

标签:print   int   get   put   input   scores   cores   列表操作   pre   

原文地址:https://blog.51cto.com/14101311/2375098

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!