Topic 2 - Session 2 - MTA Intro Course Flashcards
What is the elif statement short for?
else if
Does order matter when doing if and elif statements?
Yes - the order matters when using comparisons
What is another name for “if all else fails” statement?
else statement
In simple terms, explain the logic behind a while loop
A while loop means, ‘while something is True or False, run this code.
In simple terms, explain the logic behind a for loop
A for loop is set to run a certain number of times.
What is a break statement used for?
A break statement is used to break out of a While loop or a for loop, and to execute the code that follows the loop.
Why might you use the ‘pass’ condition in a python script?
A pass condition is used as a placeholder for future code.