InterviewSolution
Saved Bookmarks
| 1. |
.1. Write a program in Python Input age of the person, if age>=18 then show the message “Valid voter” else show the message “Invalid voter”. |
|
Answer» age = INT(input ("ENTER your Age"))if age >= 18:print ("Valid VOTER")ELSE:print ("INVALID Voter") |
|