Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started