Answers for "python how to substitute a character in a string"

3

python replace

string = "[Message]"
string = string.replace("[", "")#Removes all [
string = string.replace("]", "")#Removes all ]

print(string)
Posted by: Guest on September-28-2020

Code answers related to "python how to substitute a character in a string"

Python Answers by Framework

Browse Popular Code Answers by Language