首先关。我的代码:
UserInput = ("null") #Changes later
def ask_module(param, param2):
elif UserInput == (param):
print(param2)
while True:
UserInput = input()
UserInput = UserInput.lower()
print()
if UserInput == ("test"):
print("test indeed")
ask_module("test2", "test 2")
我不太擅长编码,所以这可能是我做错的事情
这篇文章似乎有点公允,因为我几乎只有代码,但我完全不知道如何使它工作。
没有缩短的代码是什么样的:
while True:
UserInput = input()
UserInput = UserInput.lower()
print()
if UserInput == ("inventory"):
print("You have %s bobby pin/s" %bobby_pin)
print("You have %s screwdriver/s" %screwdriver)
elif UserInput == ("look at sink"):
print("The sink is old, dirty and rusty. Its pipe has a bobby pin connected")
else:
print("Did not understand that")
编辑:我看到可能很难看到我在问什么。
我想知道如何缩短我的原始代码