
Sept. 30, 2020
12:54 a.m.
On Wed, 30 Sep 2020 at 06:44, Steven D'Aprano <steve@pearwood.info> wrote:
matrix[3, 4] # unambiguously a cell reference matrix[3] # ambiguous, forbidden matrix[3, axis='row'] # unambiguously a row matrix[3, axis='col'] # unambiguously a column
I guess everybody already knows this, but I would hope the obvious choice here is matrix[row=3] But in any case, the PEP does not prescribe how the keyword arguments should be used, only that are possible. How they are used (or misused.. :) ) is of course up to the implementation. -- Kind regards, Stefano Borini