import re
test_str = "87, 72 Start I am a sentence finish"
result = re.sub(r'Start.*', "", test_str).strip()
print(result)