Computer Applications

Which of the following is not a legal type in Python ?

  1. Integer
  2. String
  3. List
  4. Generic

Python Funda

4 Likes

Answer

Generic

Reason — Generic is not a legal type in Python while Integer, String and List are legal data types in Python.

Answered By

2 Likes


Related Questions