An if else statement will run exactly one of two things. Both things will never run and neither thing will never run.

Syntax-

if # condition:

block 1 runs if condition is true

else:

block 2 runs if condition is false

block 3 always runs