Python Tutorial Part 7 | Conditional Flow: If Statements

The next part of our Python learning journey will touch upon control flow, critical to implementing logic in programs. The concept is broad and the first topic to cover will be if/elif statements. Conditional statements are the first form of control flow we will learn. They are known formally as if / else statements. The … Read more

Python Tutorial Part 5 | Data Structures: Tuples

As we approach the conclusion of Python data structures, we’ll examine the tuple. Used less frequently than lists and dictionaries, tuples do serve some handy use cases where immutability is a critical requirement. The final data structure to cover in this tutorial is called the ‘tuple’. In math terms, a tuple is an ordered arrangement … Read more

Python Tutorial Part 4 | Data Structures: Dictionaries

Both lists and dictionaries can retain structured data in Python. The dictionary is unique in that it stores individual entries with human-readable logical names rather than index numbers. Following the previous discussion about data storage in the list format, the next most common type of data structure in Python is the dictionary. These new data types … Read more

Python Tutorial Part 1 | What is Python and Where do I Start?

An introduction to the popular Python language and how to take the first step in learning programming. In this article, learn how to obtain the proper IDE and executable for your OS. Python is, at present, one of the most popular programming languages in the world. In a 2023 developer survey by Stackoverflow, Python ranked … Read more