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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!