从ipython3 notebook中运行的Python脚本可以通过以下几种方式捕获返回值:
result = some_function()
print(some_function())
from IPython.display import display
display(some_function())
some_function()
result = Out[-1]
需要注意的是,以上方法只适用于在ipython3 notebook中运行的Python脚本,如果将脚本保存为.py文件并在命令行中运行,则无法捕获返回值。此外,具体的捕获方式还取决于脚本中的返回值类型和使用的库函数。