Following are the If statement in the Python Programming Language.
if(pressure < 100 and temperature < 200):
print("System is normal")
Explanation:
<u>Following are the description of the program</u>.
In the above statement, the variable 'pressure' and the variable 'temperature' is already declared then, we set the if conditional statement according to the given scenario that is the 'pressure < 100 and temperature < 200'. If the following condition is true then it prints the following message that is 'System is normal'.