5
Jeśli mam prostą funkcję:Czy to możliwe, że funkcja python ignorować niewykorzystane kwargs
def add(a, b, c):
return a + b + c
Czy jest możliwe dla mnie zrobić to tak, że jeśli dostarczy nieużywany kwarg, to jest po prostu ignorowany?
kwargs = dict(a=1, b=2, c=3, d=4)
print add(**kwargs) #prints 6
Myślę, że to jest celem '** kwargs' ... – BenDundee