-
Notifications
You must be signed in to change notification settings - Fork 3
/
business-4.py
57 lines (40 loc) · 1.17 KB
/
business-4.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
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)
""" % player_name
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 ")
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' or ok_start == 'yes':
rules()
if ok_start == 'No' or ok_start == 'NO' or ok_start == 'no':
print s3
exit(0)
def rules(player_name):
s1 = """
Okay %s, Here are rules:
-> You will be given 5000$, which you would have to invest
-> Based on your Investment pattern, You will be awarded points
""" % player_name
print s1
start(player_name)