Python Lists and Tuples

Overview of Python Lists and Tuples Two of the most commonly used built-in data types in Python are the list and the tuple. Lists and tuples are part of the group of sequence data types—in other words, lists and tuples store one or more objects or values in a specific order. The objects stored in […]

Read More

Python Dictionary

The Python Dictionary (dict): An Overview Among the built-in Python data types is a very versatile type called a dictionary. The dictionary is similar to lists and tuples because they act as storage units for other objects or variables you’ve created. Dictionaries are different from lists and tuples because the group of objects they hold […]

Read More

Object Oriented Programming in Python

Object orientation is a central concept in Python, as well as many other languages. Understanding the concept, and applying it well, will enable you to build much more elegant and manageable software. What is Object Oriented Programming in Python? You’ll often hear it said that, in Python, everything’s an object. It’s pretty much true, with […]

Read More