We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfa7cb6 commit 70898c9Copy full SHA for 70898c9
function_params.py
@@ -1,6 +1,7 @@
1
2
-def print_msg(msg, error="No Error"):
+def print_msg(msg, error="No Error", *kwargs):
3
print("Log : "+error+":" + msg)
4
+ print(kwargs)
5
6
-print_msg("This will be logged", "File not found")
7
+print_msg("This will be logged","File not found", "1", "12", "213", "32113")
0 commit comments