Which of the following is an invalid datatype in Python?
(a) Set
(b) None
(c) Integer
(d) Real
Answer:
Python data types are:
Checking the options:
- (a) Set - Valid data type in python
- (b) None - Valid data type in python
- (c)Integer - Valid data type in python
- (d)Real - Invalid data type in python
So, the correct answer is (d).