实例5:检索列表最后一个元素——非常实用的Python代码
当前位置:首页 > 技术交流
实例5:检索列表最后一个元素——非常实用的Python代码

本站编辑

2022/7/12 0:00:00

在使用列表的时候,有时会需要取最后一个元素,有下面几种方式可以实现。

代码如下:


my_list=['banana','apple','orange','pineapple']
#索引方法
last_element=my_list[-1]
#pop方法
last_element=my_list.pop()
print(last_element)
 




输出结果:

pineapple


还可以输入200个字

蝈蝈派【海南省教改项目(Hnjg2022-80)支持】 网站版权所有

Python remained the copyright of our website

吉公网安备 22020402000437号

备案号:吉ICP备2020005062号-2

关注QQ群

了解Python

实时动态