-
Notifications
You must be signed in to change notification settings - Fork 0
/
guassingGame.py
79 lines (68 loc) · 2.38 KB
/
guassingGame.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import random
logo = """
.-. . . .-. .-. .-. .-. . . .-. .-. .-. . . .-.
|.. | | | - `-. `-. | |\| |.. | .. | - | |\/ | | -
`-' `-' `- ' `-' `- ' `-' ' ` `-' `- ' ` ' ' ` `-'
"""
# ----------------------------------------------
print(logo)
print("----- 'Welcome To The Guessing Game' -----")
# ---------------------------------------------
number = random.randint(1, 101)
print("I'm Thinking of a Number Between 1 To 100.")
print("------------------------------------------")
level = input("Choose a difficulty Level: 'easy' or 'hard': ")
# --------------------------------------------
def levels(lives):
while lives > 0:
print(f"You Have {lives} attemps remaining To pass The Number")
print("--------------------------------------------------------")
user = int(input("Make a Guess: "))
if user > 100:
print("Please Enter valid number")
lives -= 1
# ----------------
if lives == 0:
print("You've run out of the guess")
print(f"The Nmber is {number}")
lives == 0
else:
print("Guess again..")
# ----------------
elif user > number:
print("Too High..!")
lives -= 1
# -----------------
if lives == 0:
print("You've run out of the guess")
print(f"The Nmber is {number}")
lives == 0
else:
print("Guess again..")
# ----------------
elif user < number:
print("Too Low..!")
lives -= 1
# ---------------
if lives == 0:
print("You've run out of the guess")
print(f"The Nmber is {number}")
lives == 0
else:
print("Guess again..")
# ---------------
else:
print(f"You Guessed It.. The answer was: {number} :)")
print("You Won..")
lives == 0
# -----------------------------------------------
#Easy level
if level == "easy":
levels(10)
# --------------------------------------------------------
#hard Level
elif level == "hard":
levels(5)
# ------------------------------------------------
else:
print("Please Enter valid Level")