diff --git a/Technik/Python/Befehle.md b/Technik/Python/Befehle.md index 2b4f626..78327c7 100644 --- a/Technik/Python/Befehle.md +++ b/Technik/Python/Befehle.md @@ -1,7 +1,17 @@ + + +#### Allgemeine Regeln + +Name / Bezeichner werden immer mit unterstrich getrennt bei mehreren Wörtern +mein_zahl + + + #### Variablen + String Variable name = "ralf" -Intitger Variable zahle = 3 +Intitger Variable zahl = 3 Float variable zahl = 3.1 @@ -47,3 +57,7 @@ else: #### Funktionen +**def** say_hello(): + befehle + +