📜  如何在python代码示例中制作数字猜谜游戏

📅  最后修改于: 2022-03-11 14:45:07.245000             🧑  作者: Mango

代码示例1
import random
import os

os.system('cls') # Enter CLS if You're on Windows, or CLR instead of CLS if You're on MacOS or Linux

print("Welcome to Guess The Number.")

number_range = int(input("Please Enter a Number to Guess Between > "))
tries = int(input("Please Enter How Many Tries You'd Like. > "))
number = random.randint(0, number_range)
guessed = False
lost = False

tried = 0

while guessed == False and lost == False:
    os.system('cls') 
    guess = int(input("Try and Guess The Number. > "))
    os.system('cls')
    if guess > number:
        print("Too High! Try to Go Lower.")
        input()
    elif guess < number:
        print("Too Low! Try to Go Higher.")
        input()
    elif guess == number:
        print("You Guessed The Number! You Won!")
        input()
        guessed = True
    tried += 1
    if tried == tries:
      os.system('cls')
      print(f"Aww. You Ran out of Tries. {number} was The Answer.")
      lost = True

if lost == False:
    os.system('cls')
    print("Congratulations! You Won Guess The Number.")

if lost == False:
    print("Congratulations! You Won Guess The Number.")