mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
(cherry picked from commit 24a4542fc09784ed4359ed558cd5a8e49b29bf1c) IJ-MR-22901 GitOrigin-RevId: 6cd2544783580312e1194b3d76e47f9db88fbdf3
7 lines
167 B
Python
7 lines
167 B
Python
def fu<caret>n(**kwargs):
|
|
print(type(kwargs))
|
|
for key in kwargs:
|
|
print("%s = %s" % (key, kwargs[key]))
|
|
|
|
|
|
fun(name="geeks", ID="101", language="Python") |