XX2361642695 2021-05-13 11:03 采纳率: 100%
浏览 87
已采纳

如何让这段代码可以重复,而不是每次结束后需再次运行,求教各位大神

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')

  • 写回答

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
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题