This is Python! (part 11)

Tags

, , , ,

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.

Continue reading

This is Python! (part 10)

Tags

, ,

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).

Continue reading

This is Python! (part 9)

Tags

, , ,

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.

Continue reading

This is Python! (part 3)

Tags

, ,

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.

Continue reading

This is Python! (part 2)

Tags

, ,

This is the second post in a series for those who have never used Python but have used a programming language before. These posts are an introduction to this delightful and popular (free) programming language.

The first post introduced Python’s most basic data types: int, float, str, bool, and None. In this post we’ll meet the list-like data types.

Continue reading