为不同的用户输入选项使用for循环

时间:2016-04-26 02:40:27

标签: python for-loop

我希望通过使用for循环允许玩家购买标有数字的商店商品来显着缩短我的代码。这家商店可以有3-5件商品。使用我当前的代码,如果您输入' 1'代码可以正常工作,但其他项目无法访问。

command = input()


def buy():
    for x in range(1, 6):
        c = str(x)
        e = x
        return (c, e)

c, e = buy()
f = e - 1
if command == c:
    inv_items.append(items[f])
    print(e)
    print(inv_items)
    buy_more = input('Would you like to buy anything else?')

我在这里粘贴代码时不确定如何修复缩进。但我的缩进是正确的。

0 个答案:

没有答案