Ask Question

Write an if statement that prints the message ""System is normal"" if the variable pressure is less than 100 and the variable temperature is less than 200.

+2
Answers (1)
  1. 4 November, 18:58
    0
    Following are the If statement in the Python Programming Language.

    if (pressure < 100 and temperature < 200):

    print ("System is normal")

    Explanation:

    Following are the description of the program.

    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'.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write an if statement that prints the message ""System is normal"" if the variable pressure is less than 100 and the variable temperature ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers