我几天前已经将我的python从3.3.2更新到3.5.1了,前几天通过在某些功能上做了帮助我发现了一些奇怪的东西,/
在一些函数的公司中,例如:
>>> help(len)
Help on built-in function len in module builtins:
len(...)
len(object) -> integer
Return the number of items of a sequence or mapping.
>>>
现在在3.5.1
>>> help(len)
Help on built-in function len in module builtins:
len(obj, /)
Return the number of items in a container.
>>>
这/
是什么意思?