Because lstrip removes all characters from a string that is present in the parameters set, this might lead to errors: For instance, OE-EYE ```python 'OE-EYE'.lstrip('OE-') 'YE' 'OE-EYE'.removeprefix('OE-') 'EYE' ```