Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does python pandas implement functions like left or right in excel?

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to implement python pandas similar to the left or right function in excel". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how python pandas implements functions similar to left or right in excel".

With regard to this problem, I think it is most convenient to apply slicing after calling the str function.

Examples are as follows

> import pandas as pd

> import numpy as np

> df=pd.read_excel (ringing DGV >

> df

Name score

0 bob_B 45

1 jiken_A 67

# get the first three letters of the name column

> df ['nam2'] = df.name.str [: 3]

> df

Name score nam2

0 bob_B 45 bob

1 jiken_A 67 jik

# get the last three letters of the name column

> df ['nam1'] = df.name.str [- 3:]

> df

Name score nam1

0 bob_B 45 b_B

1 jiken_A 67 n_A

In fact, it is easy to solve as long as you have mastered the str function and are familiar with slicing.

At this point, I believe you have a deeper understanding of "how to implement python pandas similar to the left or right function in excel". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report