Identify the data type of X:
X = tuple(list((1,2,3,4,5))
Answers
Answered by
4
Answer:
Tuple is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Dictionary, all with different qualities and usage. A tuple is a collection which is ordered and unchangeable.
Similar questions