Car rentals and service system
def car_rental(name, age): if age >= 21: print('You are ' + str(age) + ' years old.') print('You are allowed to drive the car.') else: print('You are ' + str(age) + ' years old.') print('You are not allowed to drive the car.') car_rental('John', 15)