Einführung in Python für die Softwareentwicklung
Jasmin Ludolf
Senior Data Science Content Developer
# Boolean variable
the_truth = True
print(the_truth)
True
Vergleichsoperatoren
Überprüfung auf Gleichheit
==# Compare if 2 is equal to 3
2 == 3
False
# Check that 2 is not equal to 3
2 != 3
True
# Is 5 less than 7?
5 < 7
True
# Is 5 less than or equal to 7?
5 <= 7
True
# Is 5 greater than 7?
5 > 7
False
# Is 5 greater or equal to 7?
5 >= 7
False
# Is James greater than Brian
"James" > "Brian"
True
if-Bedingung erfüllt ist, wird die angegebene Aktion ausgeführt, sonst nicht# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity
if-Bedingung erfüllt ist, wird die angegebene Aktion ausgeführt, sonst nicht# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity:
if-Bedingung erfüllt ist, wird die angegebene Aktion ausgeführt, sonst nicht# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity:print("You have enough pasta!")
# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity:print("You have enough pasta!") # This line is not indented
print("You have enough pasta!")
^
IndentationError: expected an indented block
# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity:print("You have enough pasta!")elif pasta_quantity >= 300: print("Nearly enough pasta. Try a smaller portion.")
elif-Anweisungen möglich# Check pasta quantities required_quantity = 500 pasta_quantity = 200# Compare pasta quantities if pasta_quantity >= required_quantity:print("You have enough pasta!")elif pasta_quantity >= 300: print("Nearly enough pasta. Try a smaller portion.")# Otherwise... else: print("Not enough pasta.")
Not enough pasta.
| Operator | Funktion |
|---|---|
== |
gleich |
!= |
ungleich |
> |
größer als |
>= |
größer als oder gleich |
< |
kleiner als |
<= |
kleiner als oder gleich |
| Schlüsselwort | Funktion | Reihenfolge |
|---|---|---|
if |
prüft, ob die Bedingung erfüllt ist | an erster Stelle |
elif |
prüft, ob die alternative Bedingung erfüllt ist | nach if |
else |
führt die Aktion aus, wenn keine Bedingung erfüllt ist | nach elif |
Einführung in Python für die Softwareentwicklung