Wpis z mikrobloga

Nie ma w nim * do rozpakowywania kolekcji w argumenty :(


@bohater:

Python 2.7.16 (default, Mar 11 2019, 18:59:25)
[GCC 8.2.1 20181127] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def print_args(a, b, c, d):
... print a, b, c, d
...
>>> print_args(*(1, 2, 3, 4))
1 2 3 4