python-crash-course/Chapter_07/7-01_rental_car.py
2025-02-01 11:09:31 -05:00

7 lines
230 B
Python

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