Better Programming

Advice for programmers.

Follow publication

Member-only story

Essential Coding Style Guidelines Every Python Developer Should Know

Vinicius Monteiro
Better Programming
Published in
6 min readFeb 4, 2022

Image by the author. Python logo downloaded from Python.org.

All programming languages have strict formatting rules. If you don’t follow them, the code fails to execute.

For instance, in Java, the if statement must contain parentheses,if (x==true). In Python, a function must start with the word “def”, def cool_function(param): And so on.

However, some parts are left for software developers to decide how to write that doesn’t affect the execution.

For example, I prefer having a whitespace space surrounding the equals sign when assigning a value, x = 1. But I can write the code without whitespace, x=1and it will run as normal.

To avoid inconsistencies in the code and make it more readable, programmers are advised to follow coding format guidelines. According to official Python documentation, let’s look at some of the conventions in Python.

There are more essential recommendations. You should read the style guide for more details.

Indentation

Guideline: 4 spaces per indentation level.

Languages such as Java also has conventions for indentation. But in Python, the guidelines have more weight, as in some cases, the program fails to run if the indentation is incorrect.

Example of code using the right indentation level,

def day_of_week (day):
match day:
case 1:
return "Sunday"
case 2:
return "Monday"
case 3:
return "Tuesday"
case 4 | 5 | 6:
return "Another day of the week"
case _:
return "Invalid day"

In the code above, there are 4 spaces between the margin (where defbegins) and the start of the line match day:. The line, case 1: , is indented 4 spaces from the line above.

When 4 spaces per indentation level do not apply

  1. Add extra 4 spaces to distinguish function…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Vinicius Monteiro
Vinicius Monteiro

Written by Vinicius Monteiro

Principal Software Developer at Oracle - MySQL Database Service on OCI (views here my own) | https://twitter.com/vinidsmonteiro | vinidsmonteiro@gmail.com

Responses (2)

Write a response