python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python给数组按片赋值

python实现给数组按片赋值的方法

作者:pythoner

这篇文章主要介绍了python实现给数组按片赋值的方法,实例分析了Python在指定位置进行赋值的相关技巧,需要的朋友可以参考下

本文实例讲述了python实现给数组按片赋值的方法。分享给大家供大家参考。具体如下:

这段代码可以直接给数组的第5-7个元素赋值

inventory = ["sword", "armor", "shield", "healing potion"]
inventory[4:6] = ["orb of future telling"]
print inventory

运行结果如下:

['sword', 'armor', 'shield', 'healing potion', 'orb of future telling']

希望本文所述对大家的Python程序设计有所帮助。

您可能感兴趣的文章:
阅读全文