Answers for "remove string from a string python"

21

remove substring python

>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
Posted by: Guest on August-28-2020

Code answers related to "remove string from a string python"

Python Answers by Framework

Browse Popular Code Answers by Language