我有时看到并且不理解的含义...。三个时期。以下是我不理解的示例:>>> t = 12345, 54321, 'hello!'>>> t[0]12345>>> t(12345, 54321, 'hello!')>>> # Tuples may be nested:... u = t, (1, 2, 3, 4, 5)>>> u((12345, 54321, 'hello!'), (1, 2, 3, 4, 5))这三个时期在做什么u?
2 回答
慕哥9229398
TA贡献1877条经验 获得超6个赞
在您的情况下,主要是要表明您正在继续执行同一代码块。但是,在Python中,有一个Ellipsis主要用于numpy数组的对象,但在Python3.x中,它也可用作...,因此在Python3.x解释器中键入将返回Ellipsis...
作为行/块的延续:
>>> if 3 > 2:
... print 'yes' # indicates we're inside another block or continuing a statement
作为省略号(在Python 3.x中):
Python 3.3.0 (default, Sep 29 2012, 17:14:58)
[GCC 4.7.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> ...
Ellipsis
添加回答
举报
0/150
提交
取消