Fill in the blanks
while True:
fruit = input("Enter a fruit name, or 'quit' to quit")
if fruit == "quit":
print("We're out of fruit!")
else:
print(fruit, "is a tasty fruit!")while True:
fruit = input("Enter a fruit name, or 'quit' to quit")
if fruit == "quit":
print("We're out of fruit!")
else:
print(fruit, "is a tasty fruit!")