number = 59
guess = int(input('Enter an integer:'))
# print("guess is:" + str(guess))
if guess == number:
#New block starts here
print('Bingo!you guess it right.')
print('(but you do not win any prizes!)')
#New block ends here
elif guess < number:
#Another block
print('No,the number is higher than that')
#You can do whatever you want in a black...
else:
print('No,the number is a lower than that')
#You must have guessed > number to reach here
print('Done')
如何让这段代码可以重复,而不是每次结束后需再次运行,求教各位大神
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
5条回答 默认 最新
benbenli 2021-05-13 11:09关注number = 59 while True: guess = int(input('Enter an integer:')) # print("guess is:" + str(guess)) if guess == number: #New block starts here print('Bingo!you guess it right.') print('(but you do not win any prizes!)') #New block ends here break elif guess < number: #Another block print('No,the number is higher than that') #You can do whatever you want in a black... else: print('No,the number is a lower than that') #You must have guessed > number to reach here print('Done') # Output Enter an integer:23 No,the number is higher than that Enter an integer:80 No,the number is a lower than that Enter an integer:59 Bingo!you guess it right. (but you do not win any prizes!) Done本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报解决 1无用