python multiple if statements code example

Example 1: if else statement with multiple conditions python

if( (5 ** 2 >= 25) and (4 * 2 < 8) or (35 / 7 > 4) ):
	print("Booleans make If more powerful!")

Example 2: if and elif

'''In this program, we input a number
check if the number is positive or
negative or zero and display
an appropriate message
This time we use nested if statement'''

num = float(input("Enter a number: "))
if num >= 0:
    if num == 0:
        print("Zero")
    else:
        print("Positive number")
else:
    print("Negative number")

Example 3: if and elif

if test expression:
    Body of if
elif test expression:
    Body of elif
else: 
    Body of else