我想在数据框列的所有值中添加引导前缀和字符串结尾。 首先,我要添加 r'\ b 最后,我想添加 \ b 我做了这个,但是没有给我想要的。 我的数据框的示例是 enter image description here
df['col'] = r'r\b' + df['col'].astype(str) + r'\b'
答案 0 :(得分:0)
这应该是您追求的东西:
df['col'] = '\\b' + df['col'] + '\\b'
您的r''
仅表示字符串为 raw 。