Question

Coding Problem 3.3.3 (External resource) 3.0 points possible) SumLoop.py 1 mystery_int -3 loop to find the sum of all numbersUse a loop to find the sum of all numbers between 0 and #mystery_int, including bounds (meaning that if #mystery_int = 7, you add 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7).

However, there's a twist: mystery_int might be negative.
#So, if mystery_int was -4, you would -4 + -3 + -2 + -1 + 0.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

# do comment if any problem arises

# Code

mystery_int = -3

# add your code here

sum = 0

# calculate lower bound ie from where to start loop

lower_bound = min(0, mystery_int)

# calculate upper bound ie from where to stop loop

upper_bound = max(0, mystery_int)

# loop from lower to upper bound and calculate sum

for i in range(lower_bound, upper_bound+1):

    sum += i

print(sum)

Screenshot of code:

1 # do comment if any problem arises 2 # Code mystery_int = -3 5 6 7 8 9 10 11 12 13 14 # add your code here sum = 0 # calcul

Output:

php0FYRV8.png

Add a comment
Know the answer?
Add Answer to:
Use a loop to find the sum of all numbers between 0 and #mystery_int, including bounds...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Using while loop write a python function to find the sum of the negative numbers -3...

    Using while loop write a python function to find the sum of the negative numbers -3 to -10 but excluding both -3 and -10.

  • ****python**** Q1. Write a recursive function that returns the sum of all numbers up to and...

    ****python**** Q1. Write a recursive function that returns the sum of all numbers up to and including the given value. This function has to be recursive; you may not use loops! For example: Test Result print('%d : %d' % (5, sum_up_to(5))) 5 : 15 Q2, Write a recursive function that counts the number of odd integers in a given list. This function has to be recursive; you may not use loops! For example: Test Result print('%s : %d' % ([2,...

  • Objectives: Use the while loop in a program Use the do-while loop in a second program...

    Objectives: Use the while loop in a program Use the do-while loop in a second program Use the for loop in a third program Instructions: Part A. Code a for loop to print the Celsius temperatures for Fahrenheit temperatures 25 to 125. C = 5/9(F – 32).Output should be in a table format: Fahrenheit Celsius 25 ? . . . . . . . . Turn in the source and the output from Part A. Part B. Code a while...

  • Write a Python program to print all Perfect numbers between 1 to n. (Use any loop...

    Write a Python program to print all Perfect numbers between 1 to n. (Use any loop you want) Perfect number is a positive integer which is equal to the sum of its proper positive divisors. Proper divisors of 6 are 1, 2, 3. Sum of its proper divisors = 1 + 2 + 3 = 6. Hence 6 is a perfect number. *** proper divisor means the remainder will be 0 when divided by that number. Sample Input: n =...

  • In this exercise, write a complete Java program that reads integer numbers from the user until...

    In this exercise, write a complete Java program that reads integer numbers from the user until a negative value is entered. It should then output the average of the numbers, not including the negative number. If no non-negative values are entered, the program should issue an error message. You are required to use a do-while loop to solve this problem. Solutions that do not use a do-while loop will be given a zero. Make sure to add appropriate comments to...

  • write matlab script 5. Use a for loop to sum the elements in x = [1...

    write matlab script 5. Use a for loop to sum the elements in x = [1 2 3 4 5] Check your answer with sum function 6. Use a while loop to sum the elements in x = [1 2 3 4 5] Check your answer with sum function

  • use python: Write a program that reads in X whole numbers and outputs (1) the sum...

    use python: Write a program that reads in X whole numbers and outputs (1) the sum of all positive numbers, (2) the sum of all negative numbers, and (3) the sum of all positive and negative numbers. The user can enter the X numbers in any different order every time, and can repeat the program if desired. Sample Run How many numbers would you like to enter? 4 Please enter number 1: 3 Please enter number 2: -4 Please enter...

  • use Rstudio 1. Write a for loop that prints the first four numbers of the vector:...

    use Rstudio 1. Write a for loop that prints the first four numbers of the vector: x <c(7, 4, 3, 8, 9, 25) HINT: this is a very simple for loop but to print the chosen values you will need to use [ ] notation

  • How do I go about solving this problem in R? # This is a challenge. Essentially,...

    How do I go about solving this problem in R? # This is a challenge. Essentially, you will use loops to calculate the # sum of the sequence: 4/1 - 4/3 + 4/5 - 4/7 + 4/9 - 4/11... # Use a for loop and if statements as needed. Store the sum in the # object 'result'. # Once your code works, increase iterations to 10000+ and see what you get. # Hints: # - use an object called "add"...

  • In Python! Create the program that print out only odd numbers 1,3,5,7,9 Use either a while...

    In Python! Create the program that print out only odd numbers 1,3,5,7,9 Use either a while loop or a for loop to print only odd numbers 1, 3, 5, 7, 9 *tip: you can use range () function, or a condition with ‘break’ (e.g, while count < 10) In python!: Create a program that print out 12 months of a year and associated numbers (e.g., January 1, February 2…). Two lists should be created, and then loop through the list...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT