There are different data types available in Python. Data types determine the kind or type of value is stored in a variable. There are five built in data types in Python.
Built in datatypes
- None Type
- Numeric Type
- Sequence Type
- Sets
- Mapping
None Data Type
It represent an object that does not contain any value. Similar to null object in Java. In Python only one None object can be used. It is use as a default argument inside a function. When a function is called with no argument, default None value is passed. In Boolean, None represent false value.