how to remove extra spaces in text file python code example
Example: 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()