# -*- coding: utf-8 -*-
import re
s = u"سعید123"
print(re.sub(r'(?u)([^\W\d_])(\d)', r'\1 \2', s).encode("utf-8"))
