convertir la corde en utf8 python
FORMAT = 'utf8'
text = 'Hello World!' # text to encode to FORMAT
encoded_text = text.encode(FORMAT)
# the variable [text] is now encoded and is stored inside [encoded_text].
Smoggy Seahorse