a file named numbers.txt contains an unknown number of lines, each consisting of a single positive integer. Write some code that reads through the file, ignoring those valuse that are not bigger than the maximum value read up to that point. The numbers that are not ignored are added, and their sum stored in a variable called runsum. using python. rfile = open("numbers.txt", "r") maxvalue = 0 runsum = 0 data = rfile.readline() for data in rfile:      if int(data) > maxvalue:           maxvalue = int(data)           runsum += int(data) my code so far. not sure what i am missin

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

a file named numbers.txt contains an unknown number of lines, each consisting of a single positive integer. Write some code that reads through the file, ignoring those valuse that are not bigger than the maximum value read up to that point. The numbers that are not ignored are added, and their sum stored in a variable called runsum. using python.

rfile = open("numbers.txt", "r")

maxvalue = 0

runsum = 0

data = rfile.readline()

for data in rfile:

     if int(data) > maxvalue:

          maxvalue = int(data)

          runsum += int(data)

my code so far. not sure what i am missing

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT