Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
health_points = 10
def main():
print("Welcome to the most Awesome Game!")
name = input("What's your name? ")
age = int(input("How old are you? "))
def game_intro():
global health_points
print("You have", health_points)
wants_to_play = input("Are you ready to play? ")
if wants_to_play == "Yes":
print("Let's start our 1st round!")
game_round1()
else:
print("No problem, maybe we can play next time!")
exit()
if age <= 20:
print("Sorry, you are not eligible to play the game")
exit()
else:
print("First contestant's name is ", name, "and they are", age, "years old!")
def game_round1():
global health_points
decision = input("Please select left or right!")
if decision == "Left":
health_points == 0
print("Oh no, you lost", health_points)
exit()
if decision == "Right":
health_points += 10
print("You found gold! Now you have", health_points, "health points!")
game_round1()
game_intro()
main()