Solution: Break the Loop
We'll cover the following...
This program keeps a conversation going until the user says "bye". It also ignores empty input.
while True:word = input("Say something: ")if word == "bye":breakif word == "":continueprint("You said:", word)
...
Ask