abhirami102/Python
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
"""
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")