From b20bb90a021e6bd7e017f97aaf21f78d65e78ab4 Mon Sep 17 00:00:00 2001 From: Philipp Wagner Date: Thu, 16 Dec 2021 13:15:35 +0100 Subject: [PATCH] new file: Hello World/hello world.py --- Hello World/hello world.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Hello World/hello world.py diff --git a/Hello World/hello world.py b/Hello World/hello world.py new file mode 100644 index 0000000..8e5ad03 --- /dev/null +++ b/Hello World/hello world.py @@ -0,0 +1,16 @@ +print("Hallo Welt! Wie geht es dir?") +print("1. Gut") +print("2. Schlecht") + +# If user input is 1, print "dir geht es sehr gut" and if input is 2, print "dir geht es sehr schlecht" and if input is neither 1 or 2, print "Bitte nur 1 oder 2 eingeben" + +# Eingabe des Users +input_user = input("Bitte gib 1 oder 2 ein: ") +if input_user == "1": + print("Dir geht es sehr gut") +elif input_user == "2": + print("Dir geht es sehr schlecht") +else: + print("Bitte nur 1 oder 2 eingeben") + +exit() \ No newline at end of file