-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathGuessing_Game.py
56 lines (45 loc) · 1.49 KB
/
Guessing_Game.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
#Guess the number
from termcolor import colored
from pyfiglet import Figlet
import random
import msvcrt as m
def wait():
m.getch()
print('''
#######################################################
# #
# Welcome to the guessing game #
# #
#######################################################
''')
print('''
#######################################################
# The number is between 1 to 100. You get 6 guesses #
# If you guess the number right. You'll get a surprise#
# gift!!! #
#######################################################
''')
i = 0
predefined_num = random.randint(1, 100)
while i < 6:
#Take input or guess from the user
num = int(input(f'''Guess No. {i + 1}
Guess the number:
'''))
#ifelse tree for the game
if num == predefined_num:
print("Congratulations!! You win!")
name = input("What's your name?")
text = Figlet(font='banner3-D')
print(colored(text.renderText(f"You Win! {name}"), 'red'))
break
elif num > predefined_num and i != 5:
print("Enter a smaller number")
elif num < predefined_num and i != 5:
print("Enter a larger number")
else:
print("Sorry!!")
#increment guess counter variable by one
i += 1
m.getch()
#end of program