From 7c04f33a1cdeb3b0352f82be5e7de948f2696d25 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Fri, 21 Feb 2025 14:24:17 +0000 Subject: [PATCH] Completed 8-14 Cars --- 8-14_cars.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 8-14_cars.py diff --git a/8-14_cars.py b/8-14_cars.py deleted file mode 100644 index 2fef877..0000000 --- a/8-14_cars.py +++ /dev/null @@ -1,15 +0,0 @@ -# Exercise 8-14 Cars -# Learning Objective: Make a function that contains a dictionary and allows arbitrary numbers of arguments -# with two expected arguments of Manufacturer and Model Name - - -def make_car(make, model, **car_info): - car_info['Manufacturer'] = make - car_info['Model'] = model - return car_info - -my_car = make_car('nissan', 'z', color='red', transmission='manual', rubber_floor_mats=True) - -print(my_car) - -