Computer Science

What data type is the object below ?
L = [1, 23, 'hello', 1]

  1. list
  2. dictionary
  3. array
  4. tuple

Python Dictionaries

6 Likes

Answer

list

Reason — A list can store a sequence of values belonging to any data type and they are depicted through square brackets.

Answered By

1 Like


Related Questions