Day Five LESSON : Data Types in Python

A data type tells Python what kind of value a variable stores. Different data types are used for different purposes.

Example:

x = 5

print(type(x))