motorcycle = ["honda", "yamaha", "suzuki"] last_owned = motorcycle.pop() print("The last motorcycle I owned was a " + last_owned.title() + ".")
输出为:
The last motorcycle I owned was a Suzuki.
Python自学:第三章 使用方法pop()删除元素
原文:https://www.cnblogs.com/zhouxiin/p/10727440.html