Hi. I am trying to replace some characters in python string but it is not working.
I am using this code:
name = abc000
name.replace(“000”,””)
It showed proper output in the python interpreter. Then I tried it in Pycharm by adding the following line
print(name)
but it is not working.