-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day_6(Treasure Hunt).py
43 lines (36 loc) · 2.18 KB
/
Day_6(Treasure Hunt).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
print("Welcome to Treasure Hunt Game!")
from simple_colors import *
print(yellow('''
*******************************************************************************
| | | |
_________|________________.=""_;=.______________|_____________________|_______
| | ,-"_,="" `"=.| |
|___________________|__"=._o`"-._ `"=.______________|___________________
| `"=._o`"=._ _`"=._ |
_________|_____________________:=._o "=._."_.-="'"=.__________________|_______
| | __.--" , ; `"=._o." ,-"""-._ ". |
|___________________|_._" ,. .` ` `` , `"-._"-._ ". '__|___________________
| |o`"=._` , "` `; .". , "-._"-._; ; |
_________|___________| ;`-.o`"=._; ." ` '`."\` . "-._ /_______________|_______
| | |o; `"-.o`"=._`` '` " ,__.--o; |
|___________________|_| ; (#) `-.o `"=.`_.--"_o.-; ;___|___________________
____/______/______/___|o;._ " `".o|o_.--" ;o;____/______/______/____
/______/______/______/_"=._o--._ ; | ; ; ;/______/______/______/_
____/______/______/______/__"=._o--._ ;o|o; _._;o;____/______/______/____
/______/______/______/______/____"=._o._; | ;_.--"o.--"_/______/______/______/_
____/______/______/______/______/_____"=.o|o_.--""___/______/______/______/____
/______/______/______/______/______/______/______/______/______/______/____/___
*******************************************************************************'''))
import sys
name=input("Give your name:\t")
choice=input("Hey {}!!! What to take Right? or Left?".format(name))
if choice=="left":
print("Sorry! you lose\nHint:Take right to make right:)" )
sys.exit()
else:
choice=input("Now tell me {} whom do you want to meet sonu sood or vijay?\t".format(name))
if choice=="vijay":
print("oops! vijay is not avilable to meet you Better luck next time!:)")
sys.exit()
else:
print("Superb you comes to the right person:) Now the GIFT is yours\t\t Share what you have you will be blessed:)")