- Home
- Course Detail
regularpython@gmail.com
You are now watching:
Python Conditions / of Python Decision Theory
# If # Elif # else #if condition if 1: print("condtion true") #if and else if 0: print("Condition is true") else: print("condiotn is false") #if elif and else if False: print("if statement executed") elif True: print("elif statement executed") else: print("else statement executed")