Ejemplo: Python convierte un carácter no imprimible en una cadena de escape
text_to_print = repr(text_with_newlines_and_other_things)
print(text_to_print)
# example
>>> print("hinthere")
hi
there
>>> print(repr("hinthere"))
'hinthere'
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)