x = 5 # evaluate whether x is holding a value > 0 if x > 0: print ("x is positive!") # after the 'if' statement (note the indentation) print ("This line will always print")