***在Python -3中是什么意思?

时间:2019-05-11 18:30:32

标签: python scikit-image

我正在查看http://www.ma.iup.edu/~hedonley/python/上可用的图像处理Python脚本,并且遇到了运算符***

是什么意思?我知道*表示乘法,**表示幂。

1 个答案:

答案 0 :(得分:4)

这并不意味着什么:

Python 3.6.4 (default, Feb 27 2018, 22:13:22)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> foo = ***
  File "<stdin>", line 1
    foo = ***
           ^
SyntaxError: invalid syntax
>>>

article you linked的背景下,它很可能打算用作占位符。