There are two errors in the given program. Find them.
age=int (input ("enter your age"))
if a >= 18 :
print ("you are eligible to vote")
else
print ("you are not eligible to vote")
Answers
Answered by
0
Answer:
semicolon after condition.
semicolon after the print statement
Answered by
0
Answer:
semicolon after condition
Similar questions