>>> type(_)
<type 'ellipsis'>

>>> 1 + 1
2
>>> _
2
>>>


这个_函数的作用是什么?

最佳答案

它只是使跟踪中间值或对先前返回的值进行操作变得更加容易。

>>> [x*x for x in range(5)]
[0, 1, 4, 9, 16]
>>> sum(_) # instead of having to type sum([0,1,4,9,16]) by hand
30

关于python - 带有省略号_函数的python解释器?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3495248/

10-12 21:48