Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

remove word from string in python

#you can use replace function to remove specific word.
message = 'you can use replace function'
message = message.replace('function', '')
print(message)
Source by # #
 
PREVIOUS NEXT
Tagged: #remove #word #string #python
ADD COMMENT
Topic
Name
3+2 =