Not really, I'm not trying to suggest a fully English like language be incepted 
into python, my main point here was that there are cases where the order of 
arguments is important and being able to have actually positional arguments 
would go a long way to improving knowing intuitively that order. 
e.g. I would have to check if `my_list.insert(1, 0)` meant insert 1 at 0 or 0 
at 1.
but `my_list.insert(0).at_index(1)` would make it really easy to remember, even 
if you rarely called it that way.
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/2DNW3V6YGP5QY7ZTOYRWFKZLIPIQQQWI/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to