Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise:Tesla

Snippet info

Language

Python

Visibility

public

Author

bensruthy

Created

2026-03-17T05:54:09.399807Z

Updated

2026-03-17T05:54:09.399807Z

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(17)
INFO