See how a program picks a different path depending on a condition
Change x with − and +. Watch which branch lights up and what the program prints.
x = 5if x >= 10:print("pass")else:print("fail")
x >= 10 → condition is FALSE · else runs
Output
fail