Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
179 views
in Technique[技术] by (71.8m points)

python - pandas: how to eliminate rows with value ending with a specific character?

I have a pandas DataFrame as follows:

mail = DataFrame({'mail' : ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']})

that looks like:

                    mail
0          [email protected]
1        [email protected]
2       [email protected]
3   [email protected]
4  [email protected]
5  [email protected]
6       [email protected]

What I want to do is to filter out (elimiante) all those rows in which the value in the column mail ends with '@gmail.com'.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use str.endswith and negate the result of the boolean Series with ~:

mail[~mail['mail'].str.endswith('@gmail.com')]

Which produces:

                    mail
2       [email protected]
3   [email protected]
4  [email protected]
5  [email protected]
6       [email protected]

Pandas has many other vectorised string operations which are accessible through the .str accessor. Many of these are instantly familiar from Python's own string methods, but come will built in handling of NaN values.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...