📌  相关文章
📜  python 列表中的最后一项 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:04.685000             🧑  作者: Mango

代码示例6
some_list = [1,2,3]
some_list[-1] is the shortest and most Pythonic.
#output = 3