
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
Using Python, add all integers from 0 to 25. At what point, does the sum exceed a value of 100? Print the value of the integer at which this occurs.
The attachment has my code as I have worked it so far.
How do I formulate an output that would ONLY print:
"The sum of the square roots is 325 and the value where the sum exceeds 100 is 14."

Transcribed Image Text:►Sum_2 = 0
for value in range(0,26):
Sum_2= Sum_2 + value
if (Sum_2100):
print('The value where the sum exceeds 100 is', value)
100 is 16
100 is 17
100 is 18
The value where the sum exceeds 100 is 14
The value where the sum exceeds 100 is 15
The value where the sum exceeds
The value where the sum exceeds
The value where the sum exceeds
The value where the sum exceeds 100 is 19
The value where the sum exceeds 100 is 20
The value where the sum exceeds 100 is 21
The value where the sum exceeds 100 is 22
The value where the sum exceeds 100 is 23
The value where the sum exceeds 100 is 24
The value where the sum exceeds 100 is 25
print('The sum of all integers is', Sum_2)
The sum of all integers is 325
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- How to write a program on python with this question .The program should work and display correct outputs.arrow_forwardIn python >>> play_nim(10) The goal is 10. Pick a number between 1 and 3 Current Score 0. Player 1 enter a number: 1 Current Score 1. Player 2 enter a number: 2 Current Score 3. Player 1 enter a number: 9 Invalid number, try again. Current Score 3. Player 1 enter a number: 1 Current Score 4. Player 2 enter a number: 3 Current Score 7. Player 1 enter a number: 3 1 >>> play_nim(4) The goal is 4. Pick a number between 1 and 3 Current Score 0. Player 1 enter a number: 3 Current Score 3. Player 2 enter a number: 3 2 >>> play_nim(21) The goal is 21. Pick a number between 1 and 3 Current Score 0. Player 1 enter a number: 0 Invalid number, try again. Current Score 0. Player 1 enter a number: -78 Invalid number, try again. Current Score 0. Player 1 enter a number: 3 Current Score 3. Player 2 enter a number: 2 Current Score 5. Player 1 enter a number: 1 Current Score 6. Player 2 enter a number: 3 Current Score 9. Player 1 enter a number: 2 Current Score 11. Player 2…arrow_forwardwriting Python programs that use simple arithmeticexpressions. Follow below to write a simple Python program tosolve riddles like this one:Bush and Laura have 10 apples between them. Bush has 2 moreapples than Laura. How many apples does each have? Type the following in your editor window (the one labeled"Python Script"): input("How many apples are there in all?") We need to capture the value returned byinput() so that we can do something with it. We'll dothis by storing the result in a variable named "total_apples": total_apples = input("How many apples are there inall?") Translate this formula into Python. Start by assigning (total - 2)to a temporary variable. Divide the value of this variable by 2 andstore the result in a new variable for the first child. Add thedifference (2) to this value and store it in a new variable for thesecond child. We're almost done. Now that our calculations are finished, weshould print the results for the user. We can use theprint…arrow_forward
- Can you use Python programming language to wirte this code? Thank you very much!arrow_forwardWrite a Python program that asks the user to input 2 numbers. add the 2 numbers together print a statement that shows the 2 numbers that were entered and their sum. For instance, if I input 2 and 4 the output should say, "The sum of 2 and 4 is 6". It is probably easiest to use the repl.it web site....you can write your code and run it there - BUT - you have to turn in the code to Canvas. Just copy and paste the code into the assignmentarrow_forwardI am trying to write a java code to see if the number entered by the user is a factor of the random number generated from the import java.util.Random. When I run it it keeps saying the number entered by the user is not a factor of the random number. Another thing is the output is suppose to look like this... The value <number entered by user> is a / not a factor of <random number> how would I fix what i have to look like that?arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education