Advertisement
Guest User

369258

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Name: Manish Raj Silwal
  2.  
  3. #PART 1
  4. #Exercise 4.2
  5. PrimarySchoolAge = 4
  6. LegalVotingAge = 16
  7. AgeForPresident = 30
  8. RetirementAge = 60
  9.  
  10. YourAge = int(input("Enter your age: "))
  11.  
  12. if(YourAge<PrimarySchoolAge):
  13. print("Too Young")
  14. elif(YourAge>=PrimarySchoolAge):
  15. if(YourAge>=LegalVotingAge):
  16. print("Remember to Vote")
  17. if(YourAge>=AgeForPresident):
  18. print("Vote me")
  19. if(YourAge>=RetirementAge):
  20. print("Too Old")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement