What is tuple & string def
Answers
Answered by
2
Answer:
Hope it helps
Explanation:
Tuples are used to store multiple items in a single variable. 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.
Answered by
3
Answer:
A string is a sequence of characters. A list a sequence of values which can be characters, integers or even another list (referred to as a nested list). ... A tuple is a sequence of values (any type) which makes them similar to lists, but the difference is they are immutable.
Explanation:
Hope it will help you.
Similar questions