Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

strip spaces in python

Tags:

python

string

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?

like image 983
Richard Avatar asked Apr 12 '26 09:04

Richard


1 Answers

line = line.replace(' ', '')