forked from kaleemsiddiqu/edison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
business-3.py
45 lines (34 loc) · 973 Bytes
/
business-3.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
from sys import exit, argv
script, player_name = argv
def start(player_name):
s1 = """
Greetings %s, Welcome to
Business game. The idea of this game
is to know how you would utilize the money.
The Goal is to make good use of money and also
enjoy life and yet make enough profits.
So ready to roll ?(yes/no)
"""
s2 = """
I have no idea what you typed, You were suppose
to type yes/no, okay your choice, do visit the game
again when in good mood. Ciao %s
""" % player_name
s3 == """
Okay %s, Good bye
""" % player_name
print s1
ok_start = raw_input("[yes]/no ")
print "Ok_start = %r" % ok_start
if ok_start == '' or ok_start == 'yes' or ok_start == 'Yes':
start_game = True
elif ok_start == 'no' or ok_start == 'No' or ok_start == "NO":
start_game = False
else:
print s2
if ok_start == 'Yes' or ok_start == 'YES':
rules()
if ok_start == 'No' or ok_start == 'NO' or ok_start == 'no':
print s3
exit(0)
start(player_name)