This series of posts is for those who have used a programming language before but are not familiar with Python. This post concludes — at least for now — this series.
We’ll wrap things up with an overview of Python’s many built-in functions.
13 Monday Apr 2026
This series of posts is for those who have used a programming language before but are not familiar with Python. This post concludes — at least for now — this series.
We’ll wrap things up with an overview of Python’s many built-in functions.
06 Monday Apr 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. In previous posts we’ve introduced the language, installed it, and begun learning how to create our own data types (aka classes).
In this post we’ll dig into a very important topic: reading and writing files.
23 Monday Mar 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. The first six posts introduced the language, and the seventh discussed downloading, installing, and using it.
The previous two posts (see part 8 and part 9) explored creating classes (aka data types) in Python. This post wraps up that exploration (for now).
16 Monday Mar 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. The first six posts introduced the language; the seventh discussed how to download, install, and start using Python.
The last post began an exploration of user-defined data type (aka classes). This post picks up where we left off.
09 Monday Mar 2026
Posted in Python
This series of posts is for those who have used a programming language but are not familiar with Python. The first six posts introduced the language. The last post discussed installing and using Python.
In this post we’ll start exploring how to create and use our own data types.
23 Monday Feb 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python.
The six introductory posts so far were a bird’s eye view of this popular programming language. Now we’ll dig deeper into the language, beginning with how to download, install, and start using Python.
16 Monday Feb 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. This post concludes the introduction to the language.
This last post of the introductory tour is a grab bag of features I skipped in previous posts. From now on we’ll be digging deeper into specific topics.
09 Monday Feb 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. This fifth post continues the introduction to the language.
In the last post we explored the if-elif-else statement as well as the while and for loop statements. In this post we start exploring functions.
02 Monday Feb 2026
Posted in Python
This series of posts is for those who have used a programming language before but are not familiar with Python. This post continues the introductory tour of the language.
In the last three posts [part 1, part 2, & part 3] we toured the key Python data types. In this post we start exploring Python syntax and language statements.
26 Monday Jan 2026
Posted in Python
This is the third post in a series for those who have never used Python but have used a programming language before. These posts are meant as an introduction to this delightful and popular programming language.
The first post introduced Python’s most basic data types; the second post introduced its more interesting list-like data types. In this post, we’ll start digging deeper into those list-like data types and what they can do.