Operators
No Type
The Errors Tour
100

This operator is used to add integers and floats together or concatenate strings together. 

What is '+' ?

100

This data type stores whole numbers.

What is an integer?

100

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? 

200

This operator is used to multiply integers and floats together or repeat strings.

What is '*' ?

200

This data type stores letters, numbers, and symbols.

What is a string?

200

If you try and print a variable that you have not defined, you'd get this type of error.

What is a Name Error?

300

This comparison operator compares two values and determines whether they are equal to one another.

What is '==' ?

300

This data type stores numbers with a decimal.

What is a float?

300

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?

400

This logical operator will return the opposite boolean value. 

What is 'not' ?

400

This data type only has two values: True or False.

What are booleans?

400

If you try to concatenate a string and an integer, you'd get this type of error.

What is a Type Error? 

500
Denoted as '%', this operator returns the remainder of a division operation.
What is the modulus?
500

Data stored as a string are surrounded by these.

What are quotes?

500

A variable declared in the function and then called in the global space would cause this type of error.

What is a Name Error?

M
e
n
u