我正在查看http://www.ma.iup.edu/~hedonley/python/处提供的图像处理Python脚本,并遇到了运算符***
。
这是什么意思?我知道*
表示乘法,而**
表示幂。
最佳答案
这并不意味着什么:
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的上下文中,最有可能用作占位符。
关于python - ***在Python -3中是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56093183/