📜  转换双空格 int 单空格 python 代码示例

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

代码示例1
#converting double spaces into single spaces
df["combined"]=df["combined"].replace('\s+', ' ', regex=True)