new file: Hello World/hello world.py
This commit is contained in:
parent
134d5ebb5f
commit
b20bb90a02
16
Hello World/hello world.py
Normal file
16
Hello World/hello world.py
Normal file
@ -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()
|
Loading…
x
Reference in New Issue
Block a user