-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_life.py
29 lines (28 loc) · 883 Bytes
/
my_life.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
def opportunity_check():
opportunity = input("What opportunity do you consider? Type: tier2, job, startup, freelance OR exit to stop. ")
if opportunity == "exit":
exit()
elif opportunity == "tier2":
print("success")
exit()
elif opportunity == "job":
visa_question = input("Is visa possible? Type: yes, no. ")
if visa_question == "yes":
print("keep goin. Come back in a month.")
exit()
else:
print("Look for another opportunity")
opportunity_check()
elif opportunity == "startup" or "freelance":
progress = input("Is there substantial progress, e.g. money? Type: yes, no. ")
if progress == "yes":
print("Keep goin. Come back in a month.")
print ("Extend Tier 1 for 1 year")
exit()
else:
print("Look for another opportunity")
opportunity_check()
else:
print("Look for another opportunity")
opportunity_check()
opportunity_check()