DB
Size: a a a
DB
MM
DB
AK
AK
$ python3.6
Python 3.6.9 (default, Apr 18 2020, 01:56:04)
[GCC 8.4.0] on linux
>>> def sum(a, *, b):
... return a + b
...
>>> sum(1, 2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: sum() takes 1 positional argument but 2 were given
>>> sum(1, b=2)
3
MV
AK
AK
im.resize_distorted((570, 380),
xcenters=lambda x, i: x + math.sin(x*12)*.3)
AK
AK
MK
MK
DB
Б
MK
DB