MK
Size: a a a
MK
AO
MK
MK
MK
AO
AO
AO
AO
MK
MK
MK
S
p
С
Python 3.8.3 (default, May 15 2020, 00:00:00)
[GCC 10.1.1 20200507 (Red Hat 10.1.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> for i in range(10):
... pass
...
>>> print(i)
9
S
Python 3.8.3 (default, May 15 2020, 00:00:00)
[GCC 10.1.1 20200507 (Red Hat 10.1.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> for i in range(10):
... pass
...
>>> print(i)
9
E
match shape:
case Point(x, y):
...
case Rectangle(x, y, _, _):
...
print(x, y) # This works
x, y = match shape:
case Point(x, y):
return x, y
case Rectangle(x, y, _, _):
return x, y
E
MK
MK