Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mycode.py #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions mycode.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,22 @@

tech3 = input("I can code well")

outdoor3 = input("I enjoy camping")

music3 = input("I enjoy music")

tech4 = input("I am proficient in computing")

outdoor4 = input("I enjoy physical activity")

music4 = input("I can read musical scores")


print()

if tech_final > outdoor_final and tech_final > music_final:
if tech_final > outdoor_final and music_final:
print("You might be suitable for Infocomm club!")
elif outdoor_final > music_final:
if outdoor_final > music_final and tech_final:
print("You might be stuiable for ODAC!")
else:
print("You might be suitable for Band!")
Expand Down