We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6a84bb commit f959fc1Copy full SHA for f959fc1
1 file changed
args_kwargs.py
@@ -0,0 +1,5 @@
1
+def alias(*args, **kwargs):
2
+ print('args=', args)
3
+ print('kwargs=', kwargs)
4
+
5
+alias(3, 23, 3, 3,a='hello',b=3,c='C')
0 commit comments