Hello everyone, there is an example in python
def foo1(*args): print args def foo2(**kwargs): print kwargs foo1(1, 2, 3) foo2(a=1, b=2, c=3) But it does not work here is the message:

Hello everyone, there is an example in python
def foo1(*args): print args def foo2(**kwargs): print kwargs foo1(1, 2, 3) foo2(a=1, b=2, c=3) But it does not work here is the message:

Source: https://ru.stackoverflow.com/questions/318683/
All Articles