5 lines
106 B
Python
5 lines
106 B
Python
# Unparenthesized walruses are now allowed in indices since Python 3.10.
|
|
x[a:=0]
|
|
x[a:=0, b:=1]
|
|
x[5, b:=0]
|