-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
38 lines (24 loc) · 1.17 KB
/
app.py
File metadata and controls
38 lines (24 loc) · 1.17 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
34
35
36
37
38
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 love nature at its finest.🍙")
music1 = input("I can feel the beat 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 like to play around with different apps.🍙")
outdoor3 = input("I am an avid animal lover.🍙")
music3 = input("I like to relax and listen to music.🍙")
tech_final = int(tech1) + int(tech2)
outdoor_final = int(outdoor1) + int(outdoor2)
music_final = int(music1)+ int(music2)
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!")