Decision making is required when we want to execute a code only if a certain condition is satisfied.the if statements is used in python for decision making the following syntax of simple if.
if test expression:
statements(s)
a = 5
if a > 0
print("This Number is Positive");