Files
2026-06-05 14:44:13 +02:00

23 lines
436 B
Python

print("Hallo! Ich bin ein Chatbot.")
name = input("Wie heißt du?: ")
promptsAndAnswers = {
"hallo" : "Hallo!",
"wie gehts" : "Gut",
"bye" : "Tschüss"
}
print("Hallo", name)
while True:
text = input("Nachricht eingeben: ")
try:
print(promptsAndAnswers[text])
except Exception as somethingElse:
print("Das verstehe ich nicht.")
if text == "bye":
print("Tschüss!")
break