Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tesla

Snippet info

Language

Python

Visibility

public

Author

raulciprian.tudor

Created

2026-01-04T17:00:10.501309Z

Updated

2026-01-04T17:03:58.422617Z

def checkDriverAge(age=0):
    if int(age) < 18:
    	print("Sorry, you are too young to drive this car. Powering off")
    elif int(age) > 18:
    	print("Powering On. Enjoy the ride!");
    elif int(age) == 18:
    	print("Congratulations on your first year of driving. Enjoy the ride!")

checkDriverAge(18)
INFO