Ask Question
22 May, 21:12

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.

+1
Answers (1)
  1. 22 May, 21:32
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers