python delete first occurrence in string code example
Example 1: how to remove first letter of a string python
s = "hello"
print s[1:]
Example 2: 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: "