Regex en python pour obtenir uniquement la chaîne en python

import re
print(" ".join(re.findall("[a-zA-Z]","your string")))
codes_with_roh