📜  python 上一个答案 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:44.436000             🧑  作者: Mango

代码示例1
# an underscore gives the last result in the python shell
>>> 5+5
10
>>> _
10
>>> _ + 5
15
>>> _
15