Python User-defined Function: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "]] ** " to "]]. ** ") |
m (Text replacement - "__NOTOC__ " to "__NOTOC__ ") |
||
Line 13: | Line 13: | ||
__NOTOC__ | __NOTOC__ | ||
[[Category:Concept]] | [[Category:Concept]] |
Latest revision as of 04:59, 6 January 2023
A Python User-defined Function is a User-defined Function that is a Python function.
- Example(s):
def printme( str ):
"This prints a passed string into this function"
print str;
return;
- Counter-Example(s):
- See: Python Variable.