小编典典

Python-删除字符串中多个空格的简单方法是什么?

python

假设这是字符串:

The   fox jumped   over    the log.

这将导致:

The fox jumped over the log.

能做到这一点的最简单的1-2衬管是什么?无需拆分并进入列表…


阅读 349

收藏
2020-02-17

共1个答案

小编典典

>>> import re
>>> re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
2020-02-17