Python如何在RPG库存系统中添加/删除项目

时间:2016-06-03 17:05:22

标签: python

我知道如何制作简单的广告资源,但如何添加和删除商品? 这是我的广告资源:inventory = ["Sword", "Shield", "Helmet", "Gloves"] 我可以打印广告资源:print inventory 我使用Python 2.7.10 我尝试了这个但不起作用:inventory.add("Gun")

3 个答案:

答案 0 :(得分:0)

使用append()附加到列表

答案 1 :(得分:0)

“inventory”是一个列表

将项目添加到列表的功能是“追加”

inventory.append("Gun")  

会做你想做的事。

答案 2 :(得分:0)

要将项添加到数组,请使用:inventory.append("item")

要从数组中删除项目,请使用:inventory.remove("item")