例如,如果我在终端中运行一个 python 程序,如下所示:
python test.py
假设 test.py 返回一个 int 数组。运行程序后,我可以运行什么命令来查看返回的这个数组?
答案1
如果您不想在终端的滑块中向后滚动,您可以重新运行python test.py
并捕获如下输出:
script test.py.log
python test.py
exit
或者
python test.py |& tee test.py.log
例如,如果我在终端中运行一个 python 程序,如下所示:
python test.py
假设 test.py 返回一个 int 数组。运行程序后,我可以运行什么命令来查看返回的这个数组?
如果您不想在终端的滑块中向后滚动,您可以重新运行python test.py
并捕获如下输出:
script test.py.log
python test.py
exit
或者
python test.py |& tee test.py.log