What is an 'if' statement?
This operator combines two strings together.
What is the concatenation (+) operator?
a loop that will run as long as a condition is true
What is a for or while loop?
This function is used to output information on the screen
What is a print()?
The symbol used to multiply values in Python
What is an asterisk?
These are used instead of spaces when naming something in Python
What is a underscore?
What is the value of the following expression?
"cat" * 3
What is catcatcat?
What is a Boolean?
An error that causes the program not to run
What is a syntax error?
This function will allow the user to enter in text.
what is the input() function?
What is the symbol used to determine the remainder of the quotient?
What is the modulus/percent sign?
This function will convert a str to a positive or negative whole number
what is the int() function
What is the escape character \n?