diff --git a/.idea/.gitignore b/.gitignore similarity index 87% rename from .idea/.gitignore rename to .gitignore index 26d3352..9b670cc 100644 --- a/.idea/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ # Default ignored files /shelf/ /workspace.xml +/.idea/ \ No newline at end of file diff --git a/Chatbot b/Chatbot new file mode 100644 index 0000000..e020167 --- /dev/null +++ b/Chatbot @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +print ("Hallo! Willkommen bei MikaGPT. Was kann ich für Sie tun?") +uinput = (input("Bitte Eingabe beginnen ").lower().split()) + + +while uinput: + if "bye" in uinput: + print("MikaGPT wird nun beendet.") + break +