Guest User

Untitled

a guest
Apr 27th, 2025
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. points = 0
  2. print("welcome")
  3. qn1 = input("have you ever wave at someone but they were not waving at you (y or n)")
  4. if qn1 == "y":
  5. points -=1550
  6. else:
  7. points += 2270
  8.  
  9. qn2 = input("are you liang tze (y or n)")
  10. if qn2 == "y":
  11. points -=2500
  12. else:
  13. points +=2670
  14.  
  15.  
  16. qn3= input ("have you ever not brought your wallet while waiting for the line")
  17. if qn3=="y":
  18. points-=1250
  19. else:
  20. points+=2120
  21.  
  22.  
  23. qn4= input("have you ever listened to favourite song and dance in public")
  24. if qn4=="y":
  25. points-=2500
  26. else:
  27. points+=3000
  28.  
  29.  
  30. qn5= input ("have you ever tripped on air")
  31. if qn5=="y":
  32. points-=1650
  33. else:
  34. points +=1250
  35.  
  36.  
  37. if points < 2000:
  38. print("womp womp")
  39. elif points < 6000:
  40. print("u tried")
  41. else:
  42. print("u are the true sigma")
  43. print("final aura: "+str(points))
Advertisement
Add Comment
Please, Sign In to add comment