Topic 4 - Session 4 - MTA Intro Course Flashcards
Define what a function does in Python?
A function is code which can be reused.
What types of statements require indentation?
If, while and for loops require indentation.
What is pydoc?
It is a documentation generator module.
What command would you enter to find additional information on the “pass” command using pydoc
python -m pydoc pass
Is python picky as to where function are written in programs?
Yes - functions have to be written before they are called.
What does “def” mean in relation to functions in python?
It means that you wish to define a function in python.
What is missing from the following function definition?
def fullName(firstName, lastName)
It is missing a colon at the end of the line. It should be…
def fullName(firstName, lastName):
What purpose does the pass keyword serve?
The pass keyword serves as a mere placeholder for potential future code.