python通过加号运算符操作列表的方法
更新时间:2015年07月28日 10:02:17 作者:pythoner
这篇文章主要介绍了python通过加号运算符操作列表的方法,实例分析了Python使用加号运算符实现列表追加的方法,需要的朋友可以参考下
本文实例讲述了python通过加号运算符操作列表的方法。分享给大家供大家参考。具体如下:
li = ['a', 'b', 'mpilgrim'] li = li + ['example', 'new'] print li li += ['two'] print li
运行结果如下:
['a', 'b', 'mpilgrim', 'example', 'new'] ['a', 'b', 'mpilgrim', 'example', 'new', 'two']
希望本文所述对大家的Python程序设计有所帮助。
相关文章
Python TypeError: ‘float‘ object is not subscriptable错
发现问题写python的时候出现了这个错,所以想着给大家总结下,这篇文章主要给大家介绍了关于Python TypeError: ‘float‘ object is not subscriptable错误的解决办法,需要的朋友可以参考下2022-12-12
最新评论