mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +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)
|
|
|