【对csv某列进行清洗,只保留数字】基于正则的mod

it2024-12-22  9

DF['column_name'] = DF['column_name'].str.replace(r'[^0-9]', '') # 对csv某列数据进行清洗,只保留数字
最新回复(0)