Question: Write a function that uses the range() function and asks for a user input of Enter a number between -100 and 100: to control
Write a function that uses the range() function and asks for a user input of "Enter a number between -100 and 100: " to control the range.
- If the number entered is less than 0, return a list with values starting at the given number to 0 with increments of 1.
- If the number entered is greater than 0, return that number to 100 with increments of 2.
- If 0 is entered, return 0.
def loop_function(): """ Ask for user input: "Enter a number between -100 and 100: ". If the number entered is less than 0, return a list with values starting at the given number to 0 with increments of 1. If the number entered is greater than 0, return that number to 100 with increments of 2. If 0 is entered, return 0. """ return "stub"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
