标签: python
如何在Python中定义一个nullary函数,即一个没有参数的函数?例如,我可能想要定义一个始终返回特定值的函数。
答案 0 :(得分:1)
要定义具有两个参数的函数,请列出两个参数:
def func(one_argument, another):
要定义零参数的函数,可以列出零参数:
def func(): # ^ nothing there
与任何其他非负整数参数相同。