Computer Science, asked by pari4886, 10 months ago

1. Which of the following is not a legal type in Python ?
(a) Integer
(b) String
(c) List
(d) Generic​

Answers

Answered by Anonymous
5

Answer:

d) Generic is not the legal type in python.

Answered by smartbrainz
1

Generic is not a legal type in Python.

Option (d)

Explanation:

  • Python is an object-oriented programming language which has a huge demand in Rapid Application Development due to ts dynamic typing and dynamic binding features.
  • Python supports a number of datatypes like Integer which holds numerical values. There is no limitation on how long the integer value can be.
  • String is another data type that are sequences of character data. A string in Python may contain any number of characters. A string can also be left empty.
  • List is a composite data type which is a built-in function in Python. It is used to construct a list object.

To know more about Python, visit:

https://brainly.in/question/9677174

Similar questions