views:

96

answers:

2

ok I know that this should be simple... anyways say:

line = "$W5M5A,100527,142500,730301c44892fd1c,2,686.5  4,333.96,0,0,28.6,123,75,-0.4,1.4*49"

I want to strip out the spaces. I thought you would just do this

line = line.strip()

but now line is still '$W5M5A,100527,142500,730301c44892fd1c,2,686.5 4,333.96,0,0,28.6,123,75,-0.4,1.4*49' instead of '$W5M5A,100527,142500,730301c44892fd1c,2,686.54,333.96,0,0,28.6,123,75,-0.4,1.4*49'

any thoughts?

+10  A: 
line = line.replace(' ', '')
Longpoke
Thank you that did it
Richard
A: 

another way of doing it

line = ''.join(line.split())
momo