What’s the best way of getting help in Python e.g. for the round function?
help(round)
What are the main elements of a function?
How do you write a docstring?
The docstring is a triple-quoted string (which may span multiple lines) that comes immediately after the header of a function.
If there is no return in the function, what is its value?
None
How do you start a new line between each of the arguments in the print function?
Define the optinoal argument:sep='\n'
How do you add optional arguments with default values to a function header?
def greet(who="Colin"):