5 lines
145 B
Python
Raw Normal View History

2022-09-03 10:15:31 +08:00
def test(a, b, e=10, *vars, **keys):
print(keys['c'], keys['d'], a, b, vars[0], e)
2022-09-02 09:22:39 +08:00
test(3, 4, 5, c=1, d= 2)
2022-09-03 10:15:31 +08:00
test(3, 4, 5, c=1, d= 2, e = 12)