Introduction to Sequence Data Types :-
Sequence Data Type Python में एक ऐसा Data Type (डेटा प्रकार) है जिसका उपयोग एक से अधिक values या elements को एक निश्चित क्रम (Order) में store करने के लिए किया जाता है।
Sequence में प्रत्येक element की एक position (स्थिति) होती है, जिसे Index (इंडेक्स) कहा जाता है। Python में indexing 0 से शुरू होती है।
English
A Sequence Data Type in Python is a data type used to store multiple values or elements in a specific order.
Each element in a sequence has a position called an index. Python uses zero-based indexing, so the first element has index 0.