如何检查 Python 中没有参数发送给函数
How to check for no argument sent to a function in Python
所以,在一个函数中,我想测试函数期望的参数是否存在。如果有参数,则执行此操作,如果没有从调用程序发送参数并且 none 被接收到函数中,则执行此操作。
def do_something(calculate):
if calculate == something expected:
do this
elif calculate not sent to function:
do that
那么合乎逻辑的是 test/expression 我需要检查以测试函数是否没有收到任何参数?
你可以把argument
设为None
,看看是否通过,
def do_something(calculate=None):
if calculate is None:
# do that
return 'Whatever'
if calculate == "something expected":
# do this
return 'Whateverelse'
所以,在一个函数中,我想测试函数期望的参数是否存在。如果有参数,则执行此操作,如果没有从调用程序发送参数并且 none 被接收到函数中,则执行此操作。
def do_something(calculate):
if calculate == something expected:
do this
elif calculate not sent to function:
do that
那么合乎逻辑的是 test/expression 我需要检查以测试函数是否没有收到任何参数?
你可以把argument
设为None
,看看是否通过,
def do_something(calculate=None):
if calculate is None:
# do that
return 'Whatever'
if calculate == "something expected":
# do this
return 'Whateverelse'