TODO: ADD MORE
- Parameters passed into a function. In python, these are noted in the
()
following a function name. The example code uses a function namedto_rna()
with an argument ofdna_strand
. rna-transcription - The example solutions use functions that take function arguments to operate on passed in markdown strings. markdown
- the exercise requires a single positional parameter in the function signature leap
- concept over arguments of a function and how to use them is required variable-length-quantity
- the methods returning "row" and "column" need to take both
self
and an integer as arguments matrix - the example
__init__
method hasself
, direction, x, and y (coordinates) as parameters. It also usesself
andcommands
(a string) for parameters of themove()
method. robot-simulator