Skip to content

Commit 007eccf

Browse files
committed
Update input.txt
1 parent 9d64ed7 commit 007eccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/06 Bind Variadic Function/input.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ my_print(1, '2', 3.0, True, [None, ('a', 'b')])
44
a = [i for i in range(5)]
55
my_print(*a, sep=' | ')
66

7-
print("==> my_print_kw(**kwargs)")
7+
print("==> my_print_kw(sep='=', **kwargs)")
88
my_print_kw(a=1, b='2', c=3.0, d=True)
99
print()
1010
my_print_kw(a=1, b='2', c=3.0, d=True, sep=': ')

0 commit comments

Comments
 (0)