Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. clouddark = input("Is water coming from the sky ??")
  2.  
  3. ground = input("is the ground wet?")
  4.  
  5. canopy = input("are you under a canopy or in a building ?")
  6.  
  7. if clouddark == "yes" or clouddark == "yeah" or clouddark == "yh"
  8. and ground == "yes" or ground == "yeah" or ground == "yh" :
  9.  
  10. print("yes,it is raining ")
  11.  
  12. else:
  13. if ground == "no" and (canopy == "yes" or canopy == "yeah" or canopy == "yh"):
  14.  
  15. print("yes,it is raining ")
  16.  
  17. else:
  18. if ground =="yes" or ground == "yeah" or ground == "yh"and (canopy == "no"):
  19.  
  20. print(" Hey boo, did you pee on yourself again ;-)) ? ")
  21. else:
  22.  
  23. print("no,its just your imagination or you're high ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement