Its quite simple but I got stuck. I have two files who need to be identical(even spaces)
file #1 is the output from :
for i in range(0, 19):
print(i)
and the other is the same just without space after the 18
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
how do I remove the space after the 18 in order to get identical files?? ( only by changing file#1)
thank you! the example