Answers for "Write a python program that allows you to erase multiple spaces in a text file"

3

remove multiple space python

import re
re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Posted by: Guest on August-05-2020
0

Write a python program that allows you to erase multiple spaces in a text file

fin = open("data.txt", "rt")
fout = open("out.txt", "wt")

for line in fin:
	fout.write(' '.join(line.split()))
	
fin.close()
fout.close()
Posted by: Guest on December-17-2020

Code answers related to "Write a python program that allows you to erase multiple spaces in a text file"

Python Answers by Framework

Browse Popular Code Answers by Language