We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d64ed7 commit 007eccfCopy full SHA for 007eccf
examples/06 Bind Variadic Function/input.txt
@@ -4,7 +4,7 @@ my_print(1, '2', 3.0, True, [None, ('a', 'b')])
4
a = [i for i in range(5)]
5
my_print(*a, sep=' | ')
6
7
-print("==> my_print_kw(**kwargs)")
+print("==> my_print_kw(sep='=', **kwargs)")
8
my_print_kw(a=1, b='2', c=3.0, d=True)
9
print()
10
my_print_kw(a=1, b='2', c=3.0, d=True, sep=': ')
0 commit comments