RemovePrefix
#
RemovePrefixhttps://docs.python.org/3/library/stdtypes.html#str.removeprefix
If the string starts with the prefix string, return string[len(prefix):]. Otherwise, return a copy of the original string:
https://docs.python.org/3/library/stdtypes.html#str.removeprefix
If the string starts with the prefix string, return string[len(prefix):]. Otherwise, return a copy of the original string: