search
HomeBackend DevelopmentPython TutorialFive essential tips to improve the readability of Python code

There are many methods in Python that can help us understand the inner workings of the code. Good programming habits can make our work more effective with half the effort!

For example, we might end up with code that looks a lot like the image below. Although not the worst, however, we need to expand on some things, such as:

  • What do f and d stand for in the load_las_file function?
  • Why do we check the result in the clay function?
  • What types do these functions require? Floats? DataFrames?

Five essential tips to improve the readability of Python code

In this article, we will focus on how to improve the readability of your application/script through documentation, prompt input, and correct variable names. Five Essential Tips for Sex.

1. Comments

The first thing we can do to our code is to add some comments to our code, but we should not overuse it. Comments should tell you why the code works or why something is done a certain way, not how it works.

Comments in Python are usually done using the pound sign (#) and can span a single line or multiple lines.

# Comment using the hashtag
# Another comment using the hashtag

For multi-line comments, we can also use three double quotes.

"""
This is an example of
a multi-line comment
"""

In the example below, some comments have been added to the code to explain the workflow and reasoning behind certain lines of code

Five essential tips to improve the readability of Python code

2. Explicit Typing

The Python language is dynamically typed, which means variable types are only checked at runtime. Additionally, variables can change type during code execution.

Static typing, on the other hand, involves explicitly stating what type a variable is and it cannot change during the execution of the code.

In 2014, PEP 484 introduced the concept of type hints, later introduced in Python version 3.5, these allow us to explicitly state what type a variable should be.

By adding type hints, you can significantly improve the readability of your code. In the following example, we can easily get the following information:

  • The function requires two parameters
  • The file name parameter should be of string type
  • start_depth parameter should It is a float type, and the default value is None
  • This function will return a pandas DataFrame object

Five essential tips to improve the readability of Python code

We can immediately accurately determine the function needs based on the type hint what and what it will return.

3. Docstrings (Documentation Strings)

Document strings are string literals that follow a function or class definition. Docstrings are a great way to explain in detail what our functions do. what, what parameters it takes, any exceptions it throws, what it returns, etc.

Additionally, if we create online documentation for our code using a tool like Sphinx, the docstrings will automatically be picked up and converted into appropriate documentation.

The following example shows the docstring for a function named clay_volume.

Here we can specify what each parameter is, which is more detailed than basic type hints, and we can also include more information about the method behind the function, such as academic references or equations.

Five essential tips to improve the readability of Python code

#Having a docstring is also very helpful when we call functions from elsewhere in the code. For example, when editing code using Visual Studio, you can hover over a function call and see a popup of what the function does and what it requires.

Five essential tips to improve the readability of Python code

If you use Visual Studio Code (VSCode) to edit our Python code, you can use extensions like autoDocstring to simplify the process of creating docstrings. The plugin allows us to enter three double quotes and automatically fills in the rest of the template, we only need to focus on the other details that must be filled in.

Five essential tips to improve the readability of Python code

4. Readable Variable Names

Many times, when we write code, we don’t pay much attention to the names of variables, especially when we are eager to complete certain functions. But if our code returns a series of variables named x1 or var123, no one will be able to understand what they represent at first glance.

In the following example, we have two variables f and d. It's possible to guess what these mean by looking at other parts of the code, but this takes some time, especially if the code is long.

Five essential tips to improve the readability of Python code

If we assign appropriate names to these variables, we will be able to know that one of them is the data_file read by the lasio.read() call, and is most likely the original data, The data variable tells us that this is the actual data we are working with.

Five essential tips to improve the readability of Python code

5. Avoiding Magic Numbers

Magic numbers are values ​​in code that have many unexplained meanings behind them and can represent constants. Using these in code can cause ambiguity, especially for those unfamiliar with any calculations in which numbers are used.

Also, if we had the same magic number in multiple places and needed to update it, we would have to update every instance of it. However the whole process is much easier if you assign the numbers to properly named variables.

In the example below, we have a function that calculates a value called result and multiplies it by 0.6. We can't know exactly what the code means from the code

Five essential tips to improve the readability of Python code

If we declare a variable and assign the value to it, then we have a better chance of knowing what is it. In this case it is the clay to shale ratio used to convert the gamma ray index to clay volume.

Five essential tips to improve the readability of Python code

Summary

Adding documentation to our code through comments and docstrings can go a long way in helping ourselves and others understand what the code is doing. Indeed, it may feel like a chore at first, but with the use of tools and regular practice, it can become second nature to you.

The above is the detailed content of Five essential tips to improve the readability of Python code. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.