mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 10:20:52 +02:00
7 lines
66 B
Python
7 lines
66 B
Python
if a and b:
|
|
f()
|
|
if a or b:
|
|
f()
|
|
if a and (b or c):
|
|
f()
|