mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
3 lines
115 B
Python
3 lines
115 B
Python
z = lambda x, y=1, *args, **kwargs: x * y + sum(args) * kwargs.get("k", 1)
|
|
z(<arg1>1, <arg2>2, <arg3>4, <arg4>k=5)
|