GCP 1 - Selecting “good” variable names#

Note

A video for this good coding practice can be found on the overview page for Lesson 1.

This course aims to introduce you to programming in Python, but also to good programming practices. These comprise practical tips based on practices used by professional programmers that help them write better programs that are easier to understand and share with others. To say it differently, there are many ways to learn to program, and we want to help you learn how to program the right way!

This week our good programming practice (GCP) is about selecting “good” variable names.

Some “not-so-good” variable names#

To illustrate the point, consider a few not-so-good examples below.

s = "101533"

or

sid = "101533"

Any idea what these variables are for? Of course not, the variables s and sid are too short and cannot communicate what they should be used for in the code. You might think you know what they are for now, but imagine not looking at the code for a few months. Would you know then? What about if you share the code with a friend? Would they know? Probably not.

Let’s look at another example.

finnishmeteorlogicalinstituteobservationstationidentificationnumber = "101533"

OK, so now we have another issue. The variable name finnishmeteorologicalinstituteobservationstationidentificationnumber potentially provides more information about what the variable represents (the identification number of an FMI observation station), but it does so in a format that is not easy to read, nor something you’re likely to want to type more than once. The previous example was too short, and now we have a variable name that is too long (and hard to read as a result).

Selecting “good” variable names#

A good variable name should:

  1. Be clear and concise.

  2. Be written in English. A general coding practice is to write code with variable names in English, as that is the most likely common language between programmers. Thus, variable names such as muuttuja (which is also not a good name on other levels) should be avoided.

  3. Not contain special characters. Python supports use of special characters by way of various encoding options that can be given in a program. That said, it is better to avoid variables such as lämpötila because encoding issues can arise in some cases. Better to stick to the standard printable ASCII character set to be safe.

  4. Not conflict with any Python keywords, such as for, True, False, and, if, or else. These are reserved for speical operations in Python and cannot be used as variable names.

With this in mind, let’s now look at a few better options for variable names.

Formatting “good” variable names#

There are several possibilities for “good” variable name formats, of which we’ll consider two:

Recommendation 1: pothole_case_naming#

pothole_case_naming uses lowercase words separated by underscores _. This is our suggested format as the underscores make it easy to read the variable, and don’t add too much to the length of the variable name. As an example, consider the variable temp_celsius.

fmi_station_id = "101533"

Here, our new variable name conveys all of the essential information we need, while remaining easy to read.

Recommendation 2: camelCase naming#

camelCase or CamelCase uses capitalization of the first letter of words in a variable name to make it easier to read. In some cases the first letter of the variable may be capitalized. The variable tempFahrenheit was one example of camelCase.

fmiStationID = "101533"
stationID = "101533"

Again, this variable name is clear and easy to read.

Our preference in the course is for pothole_case_naming, mostly because we feel it is the easiest to read and seems to be most common amongst Python programmers. We are happy with you using either option, as long as you are consistent in the use. It might take an extra second of thought, but could make a big difference in the ease of use of your programs!