[Python-ideas] Re: Notation for subscripts.

2021-08-13 Thread 2QdxY4RzWzUUiLuE
On 2021-08-13 at 23:18:29 +1100, Matsuoka Takuo wrote: > Given a subscriptable object s, the intended rule for the notation for > getting an item of s seems that, for any expression {e}, such as > "x, ", > s[{e}] > (i.e., s[x, ] if {e} is "x, ") means the same as > s[({e})] If e is an expres

[Python-ideas] Notation for subscripts.

2021-08-13 Thread Matsuoka Takuo
Dear Developers, Given a subscriptable object s, the intended rule for the notation for getting an item of s seems that, for any expression {e}, such as "x, ", s[{e}] (i.e., s[x, ] if {e} is "x, ") means the same as s[({e})] (i.e., s[(x, )] in the considered case), namely, should be evaluated