我对此进行了大量研究,但无法弄清楚自己在做什么错。请帮忙!!!
程序的目标: 一直问用户选择一个选项的问题,直到用户在提供的列表中选择一个为止。 问题:我只是无法使not关键字正常工作。
代码语法:
items = {'1': '2', '3': '4', '5': '6'}
choice = input("Select your item: ")
print(choice)
for choice not in items:
if choice in items:
the_choice = items[choice]
print("You chose",the_choice)
break
else:
print("Uh oh, I don't know about that item")
日食错误:
for not choice in items:
^
SyntaxError: invalid syntax
慕工程0101907
心有法竹
拉风的咖菲猫
相关分类