3. if code block
#An if block
#The if statement
if 1 == 1:
#Notice that the next line has four spaces
print ("1 equals 1")
if 1 == 2:
#The code won't be executed
print("python is wrong")
print("This code is executed no matter what")INFO