Computer Science, asked by goud7, 5 months ago

what is the data type of the following object L ?
L=2,5, 'python',2,8,0​

Answers

Answered by anshumannegi55
0

Answer:

ffbvbbbnmnbvcvbbnb hb

Answered by mad210203
1

List data type

Explanation:

  • The given object is L.
  • The value of L is L = 2, 5, "python", 2, 8, 0​.
  • In the above data type, it contains numbers (2, 5, 2, 8, 0) and a string (python).
  • As it contains numbers and strings, it is considered as a list.
  • Also, it contains duplicate items such as 2.
  • So, list is a collection which is ordered and changeable and it allows duplicate items or members.

Therefore, given object is of list data type.

Similar questions