如何检查是否没有参数发送给Python中的函数

时间:2019-03-06 14:13:59

标签: python function conditional

因此,在一个函数中,我想测试该函数所期望的参数是否存在。如果有自变量,请执行此操作,如果没有从调用程序发送自变量,并且函数中没有接收到自变量,则执行此操作。

def do_something(calculate):
    if calculate == something expected:
        do this
    elif calculate not sent to function:
        do that 

那我需要检查一下逻辑测试/表达式以测试是否没有收到参数到函数中吗?

1 个答案:

答案 0 :(得分:4)

您可以将argument设置为None,并检查其是否通过

def do_something(calculate=None):
    if calculate is None:
        # do that
        return 'Whatever'
    if calculate == "something expected":
        # do this
    return 'Whateverelse'