Deklaration einer Funktion/Prozedur
| ID | 188 |
|---|---|
| Link Reference | Not set |
| Link Credits | Not set |
| Link Technical Documentation | Not set |
| PlCodelang | Python |
| PlGroup | Prozeduren, Funktionen, Methoden |
| PlItemTitle | Deklaration einer Funktion/Prozedur |
| Code | def this_is_my_function_name(param1): print "do something inside the function " + param1 print "do something outside the function" # call the function this_is_my_function_name("hello world") |
| Result Example |