Files
python/reference/concepts/function_definition.md
Michael Morehouse 29478dd68c Organize concepts, eliminate duplication
* Stage 1

* Finish restructuring, add checkboxes.

* Minor format fixes

* fixing broken link

* fixing broken link

* fixing README link

* Fix multiples bad links

* Fix links in reference/concepts/keywords/README.md

* Correcting list description
2021-01-29 11:14:36 -05:00

593 B

Function definition

TODO: ADD MORE

  • functions are defined and named using the def keyword hamming
  • A named (and often reusable) section of code that performs a specific task. It may or may not have arguments passed in, and may or may not return data. Created using the def keyword. rna-transcription
  • Tests for this exercise expect a function named parse that can be called to transform the markdown formatted text and return HTML formatted text. markdown