Let's say that I have a string like this: 'Hello \n this world is nice'. When calling the print function print('Hello \n this world is nice') the result would be such that a new line is introduced after 'Hello'.
If I wanted to print exactly
'Hello \n this world is nice'
so such that \n appears in the output of the print function as two characters), how could I do it?