Generation

generate functionFri, 18 Nov 2022

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)

Want to kickstart your project?Use the new AI Studio to create your code