Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #this script is a continuation of https://pastebin.com/rfJs4Vb9
- #i have to continue it as i remembered i forgot to put in what actually makes the entire thing work
- feminine = 0
- masculine = 0
- print("What is your favourite thing to do? Shop, Video Games, Play Sports, or Read")
- q2 = input()
- if q2 == "Read":
- feminine + 1
- if q2 == "Play sports":
- masculine + 2
- if q2 == "Video games":
- masculine + 1
- if q2 == "Read":
- feminine + 1
- else:
- print("Please re-enter your input.")
- if (masculine > feminine):
- print("You are masculine")
- if (feminine > masculine):
- print("You are feminine")
- if (feminine == masculine):
- print("You are both")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement