Chapter 7 Homework

7.1

car = input("What kind of car you'd like to rent : ")
print("let me look if I kind find",car,"for you .")

7.2

people = input("How many people : ")
people = int(people)
if people > 8:
    print("Sorry, you have to wait.")
else:
    print("Table is ready")

7.4

toppings = []
while True:

    topping = input('Chose your topping : ')

    if topping == 'quit':
        break
    else:
        toppings.append(topping)
print("Your toppings are : ",end='')
for topping in  toppings:
    print (topping,',',end='')

7.7

Chapter 7 Homework