1.

write a program to display "valid voter " , if the following condition is true : age of person should be >=18​

Answer»

age = int(INPUT("Enter your Age:")if age >= 18: print ("VALID VOTER")ELSE: print ("Invalid Voter")



Discussion

No Comment Found