player_input = '' # This has to be initialized for the loop
while player_input != 0:
player_input = str(input('Roll or quit (r or q)'))
if player_input == q: # This will break the loop if the player decides to quit
print("Now let see if I can beat your score of", player)
break
if player_input != r:
print('invalid choice, try again')
if player_input ==r:
roll= randint (1,8)
player +=roll #(+= sign helps to keep track of score)
print('You rolled is ' + str(roll))
if roll ==1:
print('You Lose :)')
sys.exit
break
Я пытаюсь сказать программе выйти, если roll == 1
, но ничего не происходит, и она просто выдает мне сообщение об ошибке, когда я пытаюсь использовать sys.exit()
Это сообщение отображается при запуске программы:
Traceback (most recent call last):
line 33, in <module>
sys.exit()
SystemExit