HomePythonIf...Else

Python If...Else

Analogy

if-else matlab road fork — ek condition sach to ek raasta, warna doosra.

Explanation

`if` condition check karta hai.

`else` tab chalta hai jab condition `False` ho.

`elif` multiple conditions ke liye.

Example

▶ Try it Yourself »
python_ifelse.pyPython
1age = 20
2
3if age >= 18:
4 print("Adult!")
5elif age >= 13:
6 print("Teen!")
7else:
8 print("Child!")
▶ Try it Yourself »

X-Ray Visualization

OperatorsWhile Loop