From 3742982edc4e956c03a014aacdea75e9ac7c93b3 Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Sat, 1 Feb 2025 11:09:31 -0500 Subject: [PATCH] Completed 7-1 Rental Car --- Chapter_07/7-01_rental_car.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Chapter_07/7-01_rental_car.py diff --git a/Chapter_07/7-01_rental_car.py b/Chapter_07/7-01_rental_car.py new file mode 100644 index 0000000..9ce3423 --- /dev/null +++ b/Chapter_07/7-01_rental_car.py @@ -0,0 +1,6 @@ +# Exercise 7-1 Rental Car +# Learning Objective: Get input from user and print a statement using input. + +kind_of_car = input("What kind of car would you like?\n\t") + +print(f"Got it, we'll see if we can find you a {kind_of_car}.")