我有一个文件,内容如下:
o hi! My name is Saurabh.
o I like python.
我想要类似的东西:
o hi! My name is Saurabh.
o I like python.
我试过这条线:
removedSpaces=' '.join(lineWithSpaces.split())
看起来它删除了所有空格
它给了我
o hi! My name is Saurabh.o I like python.
这是不正确的。无论如何都可以实现上述输出。