Python Hapus semua unicode dari string

return ''.join([i if ord(i) < 128 else ' ' for i in text])
Helpless Hummingbird