Untitled
unknown
plain_text
2 years ago
927 B
5
Indexable
import random def guessing_game(): print("Welcome to the Guessing Game!") print("I have selected a random number between 1 and 100. Can you guess it?") # Generate a random number between 1 and 100 secret_number = random.randint(1, 100) attempts = 0 while True: try: # Get the player's guess guess = int(input("Enter your guess: ")) attempts += 1 # Check if the guess is correct if guess == secret_number: print(f"Congratulations! You guessed the correct number {secret_number} in {attempts} attempts.") break elif guess < secret_number: print("Too low! Try again.") else: print("Too high! Try again.") except ValueError: print("Invalid input. Please enter a valid number.") if __name__ == "__main__": guessing_game()
Editor is loading...
Leave a Comment