Python自学:第三章 弹出列表中任何位置处的元素

motorcycles = ["honda", "yamaha", "suzuki"]

first_owned = motorcycles.pop(0)
print("The first motorcycle I owned was a " + first_owned.title() + ".")

输出为:

The first motorcycle I owned was a Honda.

 

posted @ 2019-04-18 11:22  Johnson蚂蚁  阅读(1693)  评论(0编辑  收藏  举报