Python文档指定如果函数只接受单个参数,则省略括号是合法的,但是
myfunction "Hello!"
(我正在使用Python 3.1)
编辑:
我读到的陈述仅适用于generator expressions:
The parentheses can be omitted on calls with only one argument.
最佳答案
原文链接:https://www.f2er.com/python/439348.htmlPython文档指定如果函数只接受单个参数,则省略括号是合法的,但是
myfunction "Hello!"
(我正在使用Python 3.1)
编辑:
我读到的陈述仅适用于generator expressions:
The parentheses can be omitted on calls with only one argument.