mirror of
https://github.com/pocketpy/pocketpy
synced 2025-12-08 03:00:16 +00:00
396 B
396 B
| icon |
|---|
| dot |
ternary op
Ternary operator is a short hand if...else.
PocketPy supports both C and Python style ternary.
Syntax
<condition> ? <true_expr> : <false_expr>
<true_expr> if <condition> else <false_expr>
Example
a = 1
s = a == 1 ? "a is 1" : "a is not 1"
print(s) # a is 1
# which equals to
s = "a is 1" if a == 1 else "a is not 1"