what is a
Tuple ? give an example?
Answers
Answered by
0
Explanation:
A tuple (pronounced TUH-pul) is a data structure in some programming languages that is an ordered list of elements. ... Often, a tuple is represented as a comma-delimited list of the elements, enclosed in parentheses. For example, "(5, 9, 11, 3, 22, 14)" is a "6-tuple.
Answered by
0
Answer:
A tuple is a collection which is ordered and unchangeable. Tuples are written with round brackets. Example. Create a Tuple: thistuple = ("apple", " ...
Explanation:
Similar questions