-
Notifications
You must be signed in to change notification settings - Fork 17
/
mycode.py
32 lines (19 loc) · 914 Bytes
/
mycode.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
print("Title of program: CCA Matching Personality test")
print()
print("Welcome to DHS! Please answer the following questions truthfully and we'll suggest a CCA for you!")
print("Please respond with a number 1 - 5, where 1 is strongly disagree and 5 is strongly agree.")
print()
tech1 = input("I enjoy building and fixing things.")
outdoor1 = input("I cannot stand staying in the house.")
music1 = input("I can see colours in my mind when I hear music.")
tech2 = input("I know how to build apps and websites.")
outdoor2 = input("I'm good with tying knots and ropes.")
music2 = input("I play a musical instrument well.")
tech3 = input("I can code well")
print()
if tech_final > outdoor_final and tech_final > music_final:
print("You might be suitable for Infocomm club!")
elif outdoor_final > music_final:
print("You might be stuiable for ODAC!")
else:
print("You might be suitable for Band!")