Python Specific Data
Structures
Naveen Raja S.M
,Python Data Structures
• The basic Python data structures are list, set, tuples, and dictionar
• Each of the data structures is unique in its own way.
• Data structures are “containers” that organize and group data
according to type.
,
, 1) Tuples
• A collection of ordered and immutable objects is known as a tuple
• A tuple represents a sequence of any objects separated by comma
and enclosed in parentheses.
• Tuples are used to store multiple items in a single variable.
• Tuples are immutable in nature.
Structures
Naveen Raja S.M
,Python Data Structures
• The basic Python data structures are list, set, tuples, and dictionar
• Each of the data structures is unique in its own way.
• Data structures are “containers” that organize and group data
according to type.
,
, 1) Tuples
• A collection of ordered and immutable objects is known as a tuple
• A tuple represents a sequence of any objects separated by comma
and enclosed in parentheses.
• Tuples are used to store multiple items in a single variable.
• Tuples are immutable in nature.