Files
Informatik-Python-Einstieg/goal.py
T
2026-05-29 16:49:30 +02:00

21 lines
354 B
Python

print("Hallo! Ich bin ein Chatbot.")
name = input("Wie heißt du?: ")
print("Hallo", name)
while True:
text = input("> ")
if text == "hallo":
print("Hallo!")
elif text == "wie gehts":
print("Gut :)")
elif text == "bye":
print("Tschüss!")
break
else:
print("Das verstehe ich nicht.")