Getting Started
In the realm of Hibernia, a mysterious temple stands as a beacon
Getting Started
In the realm of Hibernia, a mysterious temple stands as a beacon of legend and lore. Within its ancient halls resides a fabled artifact guarded by the enigmatic Guardian. As a daring seeker of fortune, you’ve come seeking the temple’s secrets.
Confronted by the Guardian, you’re presented with a challenge: unravel the riddle of the hidden number, ranging from 1 to 100, in only six attempts. Success promises unimaginable wealth, while failure means forever being denied the temple’s treasures.
Armed with resolve and quick wit, you step into the temple’s depths, ready to decipher the Guardian’s cryptic puzzle. Will you emerge triumphant, unlocking the temple’s riches, or will the riddle remain unsolved, leaving you to wonder what might have been? The choice is yours, adventurer. May your instincts guide you through this ancient trial.
Description
This is a number guessing game. Your task is to build a Python program that will ask users to supply numbers in an attempt to guess the correct number.
Objectives
You will write a script that will allow a user to play a guessing name. The script must allow a user to enter a number 1-100. Give the user 6 tries to guess the correct answer. Provide feedback to the user for each guess to indicate if their guess was too high or too low. If they guess correctly, let the user know they guessed correctly along with the amount of tries it took. If the user is unable to guess the number within 6 attempts, let them know they are out of guesses and let them know the number they needed to guess.
Don’t make the code complicated, assume the role of a beginner programmer making simple functions.