我是 Python 新手,我想练习循环,因为我遇到了最大的麻烦。我决定制作一个游戏,让用户从 0-100 中选择一个数字,看看他们是否能战胜电脑。我现在要做的只是开始。代码未完成。但是在尝试代码时,我得到了一个语法错误,箭头指向elif函数上的冒号。我该如何解决?我能做些什么?我接受对我的代码的任何其他附加评论,以使其更好。
这是我的代码:
import random
min = 0
max = 100
roll_again = "yes"
quit = "no"
players_choice = input()
computer = random.randint
while roll_again == "yes":
print("Pick a number between 1-100: ")
print(players_choice)
if players_choice >= 0:
print("Your number of choice was: ")
print(players_choice)
print("Your number is high.")
if computer >= 0:
print("Computers number is: ")
print(computer)
print("Computers number is high.")
if computer >= players_choice:
print("Computer wins.")
print("You lose.")
print("Would you like to play again? ", +roll_again)
elif:
print(quit)
end
目标:
修复电脑玩家游戏,同时了解更多关于 python 的信息。提供有关从何处开始的其他文档会很有帮助。
烙印99
慕森王
慕桂英3389331
相关分类