Page 1 of 1

y < 100 y≥ 100 x < 50 normal alert x ≥ 50 normal poor performance

Posted: Mon Jun 06, 2022 2:27 pm
by answerhappygod
Y 100 Y 100 X 50 Normal Alert X 50 Normal Poor Performance 1
Y 100 Y 100 X 50 Normal Alert X 50 Normal Poor Performance 1 (41.97 KiB) Viewed 17 times
Write some Python code below to:
1) Prompt the user for the values of x and y.
2) Determine the status of your process.
3) Print whether the process is behaving normally, poorly, or
requires an alert.
Your code on this problem is graded mostly on general ideas. One or
two small syntax mistakes (e.g., missing a parenthesis) are
acceptable, but please try to write working Python code. [20
points]
Canvas isn't the most graceful of tools for coding questions.
For demonstrating indentation, you may find it helpful to use a
period, or comma, and spaces, so Canvas can properly represent the
indentation.
For example:
Line 1
...Line 2 that is indented:
.......Line 3 further indented
...Line 4 that is less indented than line 3, but more indented
than line 1
Other methods work too, just try to make it readable so I can
more effectively grade it.
y < 100 y≥ 100 x < 50 normal alert x ≥ 50 normal poor performance