2021-11-18 猜数小游戏

一,猜数游戏

(1)编写程序

在这里插入图片描述

import random

while True:

    target = random.randint(0, 100)

    x = int(input("Try to guess the number I'm think of: "))

    while True:
        if x > target:
            x = int(input("Too high! Guess again: "))
        elif x < target:
            x = int(input("Too low! Guess again: "))
        else:
            break
    choice = input("That's it would you like to play again?(yes/no)")
    if choice == 'no':
        break
print("that's it! Thanks for playing.")

(2)运行程序,查看结果

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/Pythonwudud/article/details/121406253