Answers for "string replace pyhton"

3

python replace

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

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

Python Answers by Framework

Browse Popular Code Answers by Language