import re
text = "Сэр (анг) — английский"
text = re.sub(r'\s*\([^()]*\)', '', text)
print(text)