🐍 Python If-Elif-Else Builder: Classify a Number

Understanding the Program Logic

Arrange the code blocks so the program correctly classifies a number as positive, negative, or zero.

Arrange the blocks below:

if
number > 0:
print("Positive")
elif
number < 0:
print("Negative")
else:
print("Zero")