Avoid the common mistake of using str.lstrip() to strip a prefix from a string in Python. Instead, use str.removeprefix() which is designed for that purpose.
Sort: