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].
Acción