which of the following choices is not a python variable type?\no int\no str\no number\no float

which of the following choices is not a python variable type?\no int\no str\no number\no float
Answer
Brief Explanations:
In Python, int is for integer values, str is for strings, and float is for floating - point numbers. However, number is not a specific Python variable type. Python has numeric types like int and float, but number is a general term and not an official Python type.
Answer:
C. number