How to remove unicode character from "u" from the rest responses

When a rest response is made , output has “u” in front of each string . how to remove it .

That means it is unicode string, and you usually don’t need to remove it.
You won’t see it if using Python 3 (I suppose so).

Give more details where you are seeing it and why you need to remove them.

I am seeing it while getting http get response from api and I want to get rid so I can handle the response data well .

Thanks a lot for replying

Use the values without caring if they have the u before. It should work.

Thanks Helio Guilherme !