📜  如何从 python pandas 中的字符串中删除数字 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.505000             🧑  作者: Mango

代码示例1
import pandas as pd

# Example DataFrame
df = pd.DataFrame.from_dict({'Name'  : ['May21', 'James', 'Adi22', 'Hello', 'Girl90'],
                             'Volume': [23, 12, 11, 34, 56],
                             'Value' : [21321, 12311, 4435, 32454, 654654]})

df['Name'] = df['Name'].str.replace('\d+', '')

print(df)