Posts

Showing posts with the label Programming Language!

Data, Data Types and Essentials of Python Programming: Module 2: What's to Understand and Learn ...!

Image
Abstract There are four collection data types in the Python programming language: List is a collection which is ordered and changeable. Allows duplicate members. Tuple is a collection which is ordered and unchangeable. Allows duplicate members. Set is a collection which is unordered, unchangeable*, and unindexed. No duplicate members. Dictionary is a collection which is ordered** and changeable. No duplicate members. Keywords Lists, Operators, Strings and Tuples, Structuring Data, Example Program, Dictionaries Learning Outcomes After undergoing this article you will be able to understand the following 1. Lists:  2. The List  3. Data Type 4. Working with Lists,  5. Augmented Assignment Operators,  6. Methods 7. Example Program:  Magic 8 Ball with a List,  8. List-like Types 9. Strings and Tuples,  10. References in Python 11. Dictionaries in Python 12. Structuring Data 13. The Dictionary Data Type 14. Pretty Printing,  15. Using Data Structures to Model Real-World Things 16.