猿问

……是什么意思?它有含义吗?

我有时看到并且不理解的含义...。三个时期。以下是我不理解的示例:


>>> 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?


浮云间
浏览 398回答 2
2回答

MMTTMM

这只是IDE的视觉辅助,用于显示您正在继续同一行/块。另一个例子:>>> x = 1 + (... 2)

慕哥9229398

在您的情况下,主要是要表明您正在继续执行同一代码块。但是,在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 linuxType "help", "copyright", "credits" or "license" for more information.>>> ...Ellipsis
随时随地看视频慕课网APP

相关分类

Python
我要回答