Comment imprimer la nouvelle ligne du texte au lieu de n dans Jupyter Notebook

Ex: _str = 'A\nB'
expected output: 
A
B
# Instad of printing normal 
_str
Use bellow one.
print(_str)
visualscrapper