how to remove first occurance of a word in string python code example
Example: strip first occurence of substring python
>>>mystring = "Description: Mary had a little lamb Description: "
>>>print mystring.replace("Description: ","",1)
"Mary had a little lamb Description: "