You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
172 B
12 lines
172 B
4 years ago
|
x:int = 0
|
||
|
y:int = 0
|
||
|
z:bool = False
|
||
|
|
||
|
x = z = 1 # Only one error here (assignment to `x = 1` should succeed)
|
||
|
x = y = None
|
||
|
x = y = []
|
||
|
x = a = None
|
||
|
x = a = []
|
||
|
x = y = True
|
||
|
|