Question: Nested Conditi onals Activity 1: Let's return to the program sign.py that we practiced in the previous lab. Suppose we want to find out if

Nested Conditi onals Activity 1: Let's return to the program sign.py that we practiced in the previous lab. Suppose we want to find out if a number is positive, negative, and zero. We can modify the code we did previously by adding an another if...else statement inside the else statement as shown below, which is a nested if...else statement. Please modify your copy of sign.py in this way, and do some experiments to convince yourself that it works. (Again, you must be careful to include the colon after else.) number-float(input("Enter a number: ")) if number >0: print("That number is positive.") else if number
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
