xxxxxxxxxx
# '...' is an Ellipsis
# it represents an empty expression, often used to satisfy indentation requirements
def pass_it():
pass # this works
def dot_dot_dot():
# this also works, and no Exception will be thrown
xxxxxxxxxx
# Ternary operator using question mark
condition = True
result = "Condition is True" if condition else "Condition is False"
print(result)