Guest User

Untitled

a guest
Jun 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. def typeOfDay():
  2. q1=raw_input("The weather was favorable today (enter YES for true, NO for false):")
  3. q2=raw_input("I had a good time with my friends today (enter YES for true, No for false):")
  4. if q1=="YES" and q2=="YES":
  5. return "spectacular"
  6. elif q1=="YES" or q2=="YES:
  7. return "decent"
  8. else:
  9. return "crummy"
Add Comment
Please, Sign In to add comment