Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to find and remove certain characters from text string in python

a_string = "addbdcd"

a_string = a_string.replace("d", "")

print(a_string)
Source by flexiple.com #
 
PREVIOUS NEXT
Tagged: #find #remove #characters #text #string #python
ADD COMMENT
Topic
Name
2+6 =