Foo(10, 20)
In your code gets rendered in the IDE as
Foo(X=10, Y=20)
Which solves a subset of the problems named parameters solves, namely the readability of the code.
Foo(10, 20)
In your code gets rendered in the IDE as
Foo(X=10, Y=20)
Which solves a subset of the problems named parameters solves, namely the readability of the code.