mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
5 lines
145 B
Python
5 lines
145 B
Python
def test(a, b, e=10, *vars, **keys):
|
|
print(keys['c'], keys['d'], a, b, vars[0], e)
|
|
test(3, 4, 5, c=1, d= 2)
|
|
test(3, 4, 5, c=1, d= 2, e = 12)
|