# Ternary expression syntax: # value_if_true if condition else value_if_false # # Example: a = True b = "yes" if a else "no" # b will be set to "yes"