在许多符号数学系统中,例如 Matlab 或 Mathematica,您可以使用类似Ans或的变量%来检索最后计算的值。Python shell 中是否有类似的功能?
Ans
%
下划线。
>>> 5+5 10 >>> _ 10 >>> _ + 5 15 >>> _ 15