You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""
author:abhirami
date:15-1024
to check the eligiblity of driving license
"""
age=int(input("Enter your age:"))
if age>=16:
print("Eligible for driving license")
else:
print("Not eligible for driving license")