This operator is used to add integers and floats together or concatenate strings together.
What is '+' ?
This data type stores whole numbers.
What is an integer?
This type of error occurs if you miss symbols in your code. It's kind of like a spelling or grammar error.
What is a Syntax Error?
This operator is used to multiply integers and floats together or repeat strings.
What is '*' ?
This data type stores letters, numbers, and symbols.
What is a string?
If you try and print a variable that you have not defined, you'd get this type of error.
What is a Name Error?
This comparison operator compares two values and determines whether they are equal to one another.
What is '==' ?
This data type stores numbers with a decimal.
What is a float?
This error occurs when you forget to convert user input from a string to an integer/float and to use it as a number.
What is a Type Error?
This logical operator will return the opposite boolean value.
What is 'not' ?
This data type only has two values: True or False.
What are booleans?
If you try to concatenate a string and an integer, you'd get this type of error.
What is a Type Error?
Data stored as a string are surrounded by these.
What are quotes?
A variable declared in the function and then called in the global space would cause this type of error.
What is a Name Error?