Python User-defined Function: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Text replacement - ". ----" to ". ----")
m (Text replacement - "]] ** " to "]]. ** ")
Line 3: Line 3:
** <code>def printme( str ):<BR>&nbsp;&nbsp;"This prints a passed string into this function"<BR>&nbsp;&nbsp;print str;<BR>&nbsp;&nbsp;return;</code>
** <code>def printme( str ):<BR>&nbsp;&nbsp;"This prints a passed string into this function"<BR>&nbsp;&nbsp;print str;<BR>&nbsp;&nbsp;return;</code>
* <B>Counter-Example(s):</B>
* <B>Counter-Example(s):</B>
** a [[Python Library Function]]
** a [[Python Library Function]].
** a [[Python Built-in Function]].
** a [[Python Built-in Function]].
** a [[Python User-defined Data Structure]].
** a [[Python User-defined Data Structure]].

Revision as of 18:31, 6 July 2022

A Python User-defined Function is a User-defined Function that is a Python function.