Remove characters at start of string in Python

">:MASBicudo".lstrip(":>|")

Result is "MASBicudo".

This removes any of the characters from the beginning of the string. Order does not matter.