Python Class 12 - Python Data Structures

Опубликовано: 22 Март 2022
на канале: G C Reddy Software Testing
330
4

https://www.gcreddy.com/2021/07/pytho...
Python programming language has four collection data types- list, tuple, set and dictionary. They have different characteristics based on the declaration and the usage.

I. Python Lists
The list is the most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. The important thing about a list is that items in a list need not be of the same type.

II. Python Tuples
A tuple is a collection that is ordered and unchangeable. In Python, tuples are written with round brackets.

Tuple is a Data Structure of Python or a Compound data type of Python language.

III. Python Sets
Set in Python is a data structure equivalent to sets in mathematics. It may consist of various elements; the order of elements in a set is undefined.

Python set is a collection that is unordered and unindexed. In Python, sets are written with curly brackets.

IV. Python Dictionaries
A dictionary is a collection that is unordered, changeable, and indexed. In Python, dictionaries are written with curly brackets, and they have keys and values.

Python Complete Tutorial
https://www.gcreddy.com/2021/07/pytho...

Python Videos PlayList
   • Playlist  

Python Programming Syllabus
https://www.gcreddy.com/2021/05/pytho...

Python Programming Quiz
https://www.gcreddy.com/2021/11/pytho...

Python Interview Questions for Fresher
https://gcreddy.info/python-interview...
--------------------------------------------------
1. Introduction to Python Programming Language
https://www.gcreddy.com/2021/07/intro...

2. Download and Install Python
https://www.gcreddy.com/2021/07/downl...

Python Environment Setup (Using PyCharm IDE)
https://www.gcreddy.com/2022/01/pytho...

3. Python Language Syntax
https://www.gcreddy.com/2021/07/pytho...

4. Python Keywords and Identifiers
https://www.gcreddy.com/2021/07/pytho...

5. Comments in Python
https://www.gcreddy.com/2021/11/pytho...

6. Python Variables
https://www.gcreddy.com/2021/07/pytho...

7. Python Data Types
https://www.gcreddy.com/2021/07/pytho...

8. Python Operators
https://www.gcreddy.com/2021/07/pytho...

9. Python Conditional Statements
https://www.gcreddy.com/2021/07/pytho...

10. Python Loops
https://www.gcreddy.com/2021/07/pytho...

11. Python Branching Statements
https://www.gcreddy.com/2021/11/pytho...

12. Python Numbers
https://www.gcreddy.com/2021/11/pytho...

13. String Handling in Python
https://www.gcreddy.com/2021/07/strin...

14. Python Data Structures - Lists
https://www.gcreddy.com/2021/07/pytho...

15. Python Data Structures - Sets
https://www.gcreddy.com/2021/11/pytho...

16. Python Data Structures - Tuples
https://www.gcreddy.com/2021/07/pytho...

17. Python Data Structures - Dictionaries
https://www.gcreddy.com/2021/07/pytho...

18. Python User Defined Functions
https://www.gcreddy.com/2021/12/pytho...

19. Python Built-in Functions
https://www.gcreddy.com/2021/12/pytho...

20. Python Modules
https://www.gcreddy.com/2021/07/pytho...

21. Python User Input
https://www.gcreddy.com/2021/11/pytho...

22. File Handling in Python
https://www.gcreddy.com/2021/09/file-...

23. Python Date and Time
https://www.gcreddy.com/2021/12/pytho...

24. Python Exception Handling
https://www.gcreddy.com/2021/12/pytho...

25. Python Regular Expressions
https://www.gcreddy.com/2021/12/pytho...

26. Python Object Oriented Programming
https://www.gcreddy.com/2021/12/pytho...

27. Inheritance in Python
https://www.gcreddy.com/2021/12/inher...

28. Polymorphism in Python
https://www.gcreddy.com/2022/01/polym...

29. Abstraction in Python
https://www.gcreddy.com/2022/01/abstr...
--------------------------------------------------