Welcome to My New Bloggen Blog
-
Empfohlen
My First Blog Post
Be yourself; Everyone else is already taken. — Oscar Wilde. This is the first post on my new blog. I’m just getting this new blog going, so stay tuned for more. Subscribe below to get notified when I post new updates.
-
Creating Functions
Created functions are user-defined functions. Thats means that the user created the function by him self and it is not provided by the program language or the environment. The syntax to create a functions is the following: def functionname( parameters ): „function_docstring“ function_suite1 function_suite2 … return [expression] functionname is the name of the function by… Weiterlesen
-
Calling functions in Python
Most programing languages have a set of functions available that the user can us without the need to program it himself. But the user can also define and use his own functions. Important to know is that in Python functions are treated like objects. This way they are way more flexible. As already mentioned, there… Weiterlesen
Follow My Blog
Get new content delivered directly to your inbox.