how to print the text new line instead of n in jupyter notebook

Solutions on MaxInterview for how to print the text new line instead of n in jupyter notebook by the best coders in the world

showing results for - "how to print the text new line instead of n in jupyter notebook"
Maeva
11 Jun 2020
1Ex: _str = 'A\nB'
2expected output: 
3A
4B
5# Instad of printing normal 
6_str
7Use bellow one.
8print(_str)
similar questions