mirror of
https://github.com/aladdinpersson/Machine-Learning-Collection.git
synced 2026-02-21 19:27:58 +00:00
6 lines
70 B
Python
6 lines
70 B
Python
|
|
def func(x=1, y=2, **kwargs):
|
||
|
|
print(x, y)
|
||
|
|
|
||
|
|
|
||
|
|
print(func(x=3, y=4))
|