Delete the last function argument in python.
Delete the last function argument in this python script.
Start file
print(pairs, len(pairs))
End file
print(pairs,)
View Diff
1c1 < print(pairs, len(pairs)) --- > print(pairs,)
Solutions by @Smylers2:
Unlock 1 remaining solutions by signing in and submitting your own entry
VimGolf