-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay-3
48 lines (47 loc) · 2.01 KB
/
Day-3
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
print(r'''
(^\-==-/^)
>\\ == //<
:== q''p ==: _,.---.._
.__ qp __. ~.-'"'\ | |''..
^--^ | | \ \ | , || / '-. _______ .":
;| | | | | |/ .^-./ _)_)__))_).'
/ \ / | \ / {/ \\
..-'\_ \ \ ,.--'\ _ ) _/\\
| ,_../ \- |'---""" '-/ \ |
-- | | /_. |-|
__' | | ._ ___ \ ) | |__
_,______'__ddd'_______._____""__ddd'___SK______
__________,______. _._
''')
print("Welcome to find tiger game!!")
start = input("You are at the start of a jungle , waana start finding a tiger ( Y , N )\n")
if start.upper() == "Y":
print("Game start")
print("you are in jungle which direction you want to move!")
choice = input("1.north\n2.south\n3.east\n4.west\n")
if choice == "1":
print("You are heading NORTH,carefull there is a snack..")
elif choice == "2":
print("You are heading SOUTH,there is river on your way..")
elif choice == "3":
print("You are heading EAST, you have find the TIGER")
print("YOU WON")
print(r'''
(^\-==-/^)
>\\ == //<
:== q''p ==: _,.---.._
.__ qp __. ~.-'"'\ | |''..
^--^ | | \ \ | , || / '-. _______ .":
;| | | | | |/ .^-./ _)_)__))_).'
/ \ / | \ / {/ \\
..-'\_ \ \ ,.--'\ _ ) _/\\
| ,_../ \- |'---""" '-/ \ |
-- | | /_. |-|
__' | | ._ ___ \ ) | |__
_,______'__ddd'_______._____""__ddd'___SK______
__________,______. _._
''')
elif choice == "4":
print("You are heading WEST,you got nothing here...move")
else:
print("Thank you , you are not a part of game")