Regex en Python para obtener solo la cuerda en Python

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