📜  如何在 jupyter notebook 中打印文本换行而不是 n - Python 代码示例
📅  最后修改于: 2022-03-11 14:45:07.885000             🧑  作者: Mango
代码示例1
Ex: _str = 'A\nB'
expected output:
A
B
# Instad of printing normal
_str
Use bellow one.
print(_str)