If the string starts with the prefix string, return string[len(prefix):]. Otherwise, return a copy of the original string:
str.removeprefix(prefix, /)
>>> 'TestHook'.removeprefix('Test')
'Hook'
>>> 'BaseTestCase'.removeprefix('Test')
'BaseTestCase'