mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
8 lines
80 B
Python
8 lines
80 B
Python
def foo(a, b, *c):
|
|
pass
|
|
|
|
x = (5,6)
|
|
|
|
foo(<arg1>1, <arg2>2, <arg3>4, <arg4>*x)
|
|
|