猿问

如何在 Python 中使用 for 循环为多个实例调用相同的类属性?

我正在尝试使用 for 循环来检查用户是否单击了我的 pygame 中的库存槽。我创建了名称为“slot1”、“slot2”、“slot3”等的插槽,一直到“slot13”。我的问题真的是;如何为每次迭代添加“槽”后面的数字?


if event.type == pg.MOUSEBUTTONDOWN and event.button == 3:

    for i in range(14):

        if mouse_click and inventory_state and slot+str(i).collidepoint(pos):

            inventory.equip_item(inventory.items[i])


慕村225694
浏览 176回答 1
1回答

一只甜甜圈

不要将插槽存储在不同的变量中,而是存储在列表中。然后你可以遍历这个列表:for i in range(13):    if mouse_click and inventory_state and slots[i].collidepoint(pos):         inventory.equip_item(inventory.items[i])
随时随地看视频慕课网APP

相关分类

Python
我要回答