import re

str = 'abc def  gh ijk'
strAfter = re.sub(' +', '', str)
print(strAfter)

相关文章: