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}.")