多个可选参数 python

Multiple optional arguments python

所以我有一个带有几个可选参数的函数,如下所示:

def func1(arg1, arg2, optarg1=None, optarg2=None, optarg3=None):

Optarg1 和 optarg2 通常 一起使用,如果指定了这 2 个参数,则不使用 optarg3。相反,如果指定了 optarg3,则不使用 optarg1 和 optarg2。如果它是一个可选参数,那么函数很容易 "know" 使用哪个参数:

if optarg1 != None:
    do something
else:
    do something else 

我的问题是如何 "tell" 当有多个可选参数并且并非所有参数都总是指定时使用哪个可选参数的函数?用 **kwargs 解析参数是可行的方法吗?

如果您在函数的调用中分配它们,您可以抢占您传递的参数。

def foo( a, b=None, c=None):
    print("{},{},{}".format(a,b,c))

>>> foo(4) 
4,None,None
>>> foo(4,c=5)
4,None,5

**kwargs 用于让 Python 函数接受任意数量的关键字参数,然后 ** 解压关键字参数字典。 Learn More here

def print_keyword_args(**kwargs):
    # kwargs is a dict of the keyword args passed to the function
    print kwargs
    if("optarg1" in kwargs and "optarg2" in kwargs):
        print "Who needs optarg3!"
        print kwargs['optarg1'], kwargs['optarg2']
    if("optarg3" in kwargs):
        print "Who needs optarg1, optarg2!!"
        print kwargs['optarg3']

print_keyword_args(optarg1="John", optarg2="Doe")
# {'optarg1': 'John', 'optarg2': 'Doe'}
# Who needs optarg3!
# John Doe
print_keyword_args(optarg3="Maxwell")
# {'optarg3': 'Maxwell'}
# Who needs optarg1, optarg2!!
# Maxwell
print_keyword_args(optarg1="John", optarg3="Duh!")
# {'optarg1': 'John', 'optarg3': 'Duh!'}
# Who needs optarg1, optarg2!!
# Duh!