mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
It allows to assume that under `and` condition all sub-conditions are satisfied. GitOrigin-RevId: f58ed2706d7eb9c1595415cce57cb8020011b57a
9 lines
155 B
Python
9 lines
155 B
Python
while undefined1 and (r := undefined2()):
|
|
print(r)
|
|
else:
|
|
print("ok")
|
|
|
|
while undefined3 or (r2 := undefined4()):
|
|
print(r2)
|
|
else:
|
|
print("ok") |