-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonHomework.py
More file actions
35 lines (30 loc) · 1.15 KB
/
PythonHomework.py
File metadata and controls
35 lines (30 loc) · 1.15 KB
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
import time
decision = ['Yes']
decision2 = ['No']
decision3 = ['Kids Version']
decision4 = ['Scary Version']
################################################################
name = input("What Can I Call You?")
time.sleep(2)
print("Very Cool Name" + name)
time.sleep(2)
decision = input("Do you want to listen to the Kids Version or the Scary Version?")
if (decision3 == 'Kids Version') or decision == 'kids version':
print("Very Good Choice!")
elif (decision4 == 'Scary Version') or decision2 =='scary version':
print ('WOW! your brave!)')
time.sleep (4)
###############################################################
print('Did you ever hear of Jack & Jill?')
time.sleep(3)
decision=('Did you hear what happened to them?')
if (decision == 'Yes') or decision == 'yes':
print("They got taught SQL by Markson")
elif(decision2 == 'No') or decision2 == 'no':
print ('WHERE HAVE YOU BEEN!')
decision=input('Do you know where they are now?')
if (decision == 'Yes') or decision == 'yes':
print("You do! Then you know what SQL can do to you")
elif(decision2 == 'No') or decision2 == 'no':
print ('IT FRIED THERE BRAIN"""')
print ('Thanks for listening :)')