Three time-saving Python tips!

王林
Release: 2023-04-12 14:25:18
forward
1409 people have browsed it

Three time-saving Python tips!

My recent work content: automatic file moving, image processing and data cleaning. I summarized some Python tips during the programming process to make my code neat and easy to understand. Next, I will share with you 3 time-saving Python tips.

Three time-saving Python tips!

Reverse the list

I recently had a project where I needed to reverse the list, which was initially done through slicing. But in fact, you can also reverse a list in python using the built-in function reverse() method.

Start by creating a list.

# 创建一个列表
mylist = list(np.arange(0,100))
Copy after login

The two methods of reversing the list are:

# 使用切片反转列表
newlist = mylist[::-1]

# 使用内置的 reverse() 反转列表
mylist.reverse()

Copy after login

Both methods can reverse the list, but it should be noted that the built-in function reverse() will change the original list and the slicing method is to create a new list.

Let’s compare the execution time ⏳

Three time-saving Python tips!

reverse() and the execution time of list slicing

Obviously, the built-in function reverse() 3 times faster than list slicing method!

In my work project, in order to realize the automatic movement of system files, I created a list of location values. The early Python program was written using list slicing. Now I have rewritten the code to use the reverse() function to make the program execute faster.

Okay, let’s introduce the second technique.

Swapping two values ​​with one line of code

Swapping two variable values ​​with one line of code is a truly Pythonic way.

Unlike other programming languages, Python does not need to use temporary variables to exchange two numbers or values. Take a simple example:

# 创建两个变量
variable_1 = 100 
variable_2 = 500
Copy after login

To swap the values ​​of variable_1 and variable_2, you only need to use one line of code.

变量_2,变量_1 = 变量_1,变量_2
Copy after login

Use one line of code to exchange two values, which is simplified into the following form.

Three time-saving Python tips!

Of course, my actual work project is a little more complicated than this, using a dictionary with a list as a value for each key.

md[key_2],md[key_1] = md[key_1],md[key_2]
Copy after login

Through the above techniques, my work saves multiple iterations and complex data conversion, and reduces the execution time.

Using for loops within functions

We all like to create custom functions to perform our own specific tasks. Then use a for loop to iterate these functions and repeat the task multiple times.

However, using a function within a for loop takes longer to execute because the function is called on each iteration.

In contrast, if the for loop is implemented inside a function, the function will only be called once.

In order to explain more clearly, let’s give an example!

First create a simple string list:

listofstrings = ['苹果','橙子','香蕉','菠萝','葡萄']
Copy after login

Create two functions, with for loops inside and outside the functions, starting with the simple one.

# 在函数内部创建一个没有for循环的函数
def onlyfunction(x):
    newstring = x.capitalize()
    outputstring = x + " " + newstring
    print(outputstring)

Copy after login

And a function with a loop inside the for.

# 创建一个函数,其中 for 循环在函数内部
def forinfunction(listofstrings):
    for x in listofstrings:
        newstring = x.capitalize()
        outputstring = x + " " + newstring
        print(outputstring)

Copy after login

Let us use these functions and see the output.

Three time-saving Python tips!

Obviously, the output results of the two functions are the same.

However, the story does not end here. Let's compare, which one is faster?

Three time-saving Python tips!

As you can see, using a for loop inside a function is slightly faster.

In another project of mine, I need to handle many complex image processing tasks. In comparison, using a for loop inside a function is 1.5 times faster than calling the same function on each iteration. Of course, these are just my personal experiences, but they may be useful if you encounter similar situations.

In short, you can use Python’s built-in functions more. to improve the speed of your Python programs while keeping the code concise and easy to understand.

If you want to know more about Python’s built-in functions, you can refer to the table below, or you can check the website below:

https://www.php.cn /link/3dfe2f633108d604df160cd1b01710db

Three time-saving Python tips!

The above is the detailed content of Three time-saving Python tips!. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:51cto.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template