import re
input = "I can’t understand what's wrong"
text = re.sub("(?<=\w)[‘`’'](?=\w)", '', input)
print(text)