mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
10 lines
118 B
Python
10 lines
118 B
Python
# test if-expressions
|
|
|
|
print(1 if 0 else 2)
|
|
print(3 if 1 else 4)
|
|
|
|
def f(x):
|
|
print('a' if x else 'b')
|
|
f([])
|
|
f([1])
|