G Синтаксичний цукор

G.1 Ternary expressions

x = 2 # -2
y = "Non-negative" if x >= 0 else "Negative"
print(y)
## Non-negative

G.2 Comprehensions (Включення)