
Oct. 18, 2021
4:23 p.m.
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.