+ 1
Python remove character
I have tried remove and del but I can't figure out how to remove a character Pls help https://code.sololearn.com/c6a629z82X1o/?ref=app
2 Respostas
+ 2
There is no method or attribute like remove for string ,
Here I found ways to to remove character from a string but original string still won't be affected
https://www.google.com/url?sa=t&source=web&rct=j&url=https://www.askpython.com/JUMP_LINK__&&__python__&&__JUMP_LINK/string/remove-character-from-string-python&ved=2ahUKEwj5xvjCpsTsAhULyDgGHfkwBjsQFjAMegQIDxAB&usg=AOvVaw1MyEnwEKtWO283pvwazpGc&cshid=1603235779210
You can simply use replace method in case you don't wanna go through link
string=string.replace(a,"")
+ 2
Thank you