Q. Which of the following is NOT a data type in python?
β
Correct Answer: (D)
variable
Explanation: Variable is not data type in python.
Types of data type in python:
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
None Type: NoneType