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

0

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

Ex: _str = 'A\nB'
expected output: 
A
B
# Instad of printing normal 
_str
Use bellow one.
print(_str)
Posted by: Guest on October-04-2021

Code answers related to "how to print the text new line instead of n in jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language