Functions: Difference between revisions
From Jedisaber Wiki
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 11: | Line 11: | ||
print("Hello from a function") | print("Hello from a function") | ||
</pre> | </pre> | ||
... and call it thusly: | ... and call it thusly: | ||
<code> | <code>my_function()</code> | ||
my_function() | |||
</code> | |||
=== References === | |||
https://www.w3schools.com/python/python_functions.asp | |||
Latest revision as of 00:38, 27 June 2025
A function is a block of code that only runs when it is called.
You can pass data to a function.
A function can return data as a result.
You can create a function by defining it:
def my_function():
print("Hello from a function")
... and call it thusly:
my_function()
