Restructured the entire folder and added this lesson's examples
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
a = int(input("Gib einen Wert ein: "))
|
||||
|
||||
if a > 0:
|
||||
print("Der Wert a =", a, "ist größer als 0")
|
||||
|
||||
elif a < 0:
|
||||
print("Der Wert a =", a, "ist kleiner als 0")
|
||||
|
||||
else:
|
||||
print("Der Wert ist 0")
|
||||
Reference in New Issue
Block a user