micropython/tests/bytecode/mp-tests/if4.py

9 wiersze
91 B
Python
Czysty Zwykły widok Historia

if not a:
f()
if not a and b:
f()
if not a and not b:
f()
while not a:
f()