去除字段里非数值类型的字符:df['fund_id'] = df['fund_id'].apply(lambda x: ''.join(char for char in x if char.isdigit()))