The command used to get something to show on the screen.
What is print?
This symbol is used for inline comments in Python.
What is #?
These are the two boolean variable values.
What are True and False?
This loop runs as long as a condition is true.
Some of its types include string, integer, and float
What is a variable?
When used 6 times, this symbol allows for multi-line comments in Python.
What is "?
This is the command used when there are three conditions to check.
What is elif?
This command is used to exit a loop.
What is break?
This command has a user type something into the program.
What is input()?
This string command would turn "a" into "aaa."
What is "a" * 3?
OR
What is "a" + "a" + "a"?
This is the comparison operator for not equal.
What is !=?
Unless otherwise specified, for loops start at this number.
What is 0?
An input always brings in information in this variable type.
What is a string?
This mathematical operator returns the remainder of two numbers.
What is modulus?
This formatting element is very important when using conditionals.
What is indentation?
This is the way you phrase a loop that should go 10 times.
What is "for i in range (10)"?
This is the golden rule of variables.
Hint: It's something you can never do.
What is combining strings and integers?
The difference between three "if" statements and an "if-elif-else" statement.
What is checks all three vs. checks until one is True?
This value can be added to the range for a loop to count backwards.
What is -1?