jupyter notebook 有的输出结果前面没有out 是怎么回事
时间: 2024-05-21 19:09:28 浏览: 240
解决jupyter notebook 前面书写后面内容消失的问题
当jupyter notebook输出结果前面没有out时,这表示该输出结果是由print语句或者函数返回值得到的,而不是jupyter notebook自带的输出结果。可以通过在代码中添加“;”来阻止jupyter输出结果,例如print("Hello World");。这将使得jupyter notebook不会输出任何结果。另外,也可以通过将代码嵌套在with输出环境中来控制输出结果的行为,例如:
```python
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
```
这将使得jupyter notebook在每个cell的最后自动输出结果。
阅读全文