python 给数组按片赋值

2022-03-11 00:00:00 python 数组 赋值
"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python 给数组按片赋值
"""
inventory = ["sword", "armor", "shield", "healing potion", 'bandao.cn', 'baidu.com', 'google.com']
inventory[4:6] = ["pidancode.com"]
print(inventory)

输出结果:
['sword', 'armor', 'shield', 'healing potion', 'pidancode.com', 'google.com']

以上代码在Python3.9环境下测试通过。

相关文章