I have the following data in a huge string:
data="in West upto 19:17
in North from 19:17 "
I am trying to remove "'  ;'" from this huge string but it does not work with strip like this:
data= data.strip(' ')
Same output as before no change in text of data:
print(data)
in West upto 19:17
in North from 19:17
Why is there no change no stripping is happening all the   are present there and then?
Help Please!