Just a programme in Python(PyCharm)

 A programme in Python

print("Enter Your age")
age = int(input())
if age<18:
print("You can't drive")
elif age==18:
print("we will check your physical fitness first\n Then we will think about it")
else:
print("You can drive")

Comments

Popular posts from this blog

Sets in Python

My Learnings