如何从python中的URL中删除多余的文本

时间:2019-05-01 16:37:03

标签: python pandas

我在数据框内有超过1000行的url

我在数据框中有df ['profile']列

http://pbs.twimg.com/profile_images/797804071063343105/KPytXWtY_normal.jpg
http://pbs.twimg.com/profile_images/903374198009188353/pDuYl5Uk_normal.jpg
http://pbs.twimg.com/profile_images/1101088756432396290/5bzisDRx_normal.png 

我只需要从python中的图像网址中删除 _normal

我已经尝试过了,但是没有用

df.profile.str.replace(r'_normal', r'')

当我应用此行时,我在该行中获得了个人头像。而不是我想用上一个替换新值

0 个答案:

没有答案