404314364068437 In the code below, we compute the sum of integers in a file by reading them one line at a time. Rearrange the following lines of code so that the input file is closed even if the int function raises an exception. Follow Programming Tip "Do not use except and finally in the same try statement in the Exception Handling section by placing the try block and finally clause inside the outer try block. How to use this tool ✓ Unused try : Check You've added 7 blocks, but 8 were expected. Not all tests passed. 1: Compare output A Input Your output numbers1.txt X 2: Compare output Output differs. See highlights below. Special character legend Your output Total: 100 Closing file Input numbers2.txt Expected output total = 8 infile = open(input()) try: Tester.py Error: Not an integer value. Total: 55+ Closing file except ValueError : for line in infile : value int(line) total total value Total: 554 Closing file Error: Not an integer value. finally : print("Error: Not an integer value.") Load default template... print("Total:", total) print("Closing file") infile.close()

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter14: Exception Handling
Section: Chapter Questions
Problem 1TF
icon
Related questions
Question
4043143640684x3y7
In the code below, we compute the sum of integers in a file by reading them one line at a time.
Rearrange the following lines of code so that the input file is closed even if the int function raises an exception. Follow
Programming Tip "Do not use except and finally in the same try statement" in the Exception Handling section by placing the try
block and finally clause inside the outer try block.
How to use this tool
Unused
try :
Check
You've added 7 blocks, but 8 were expected.
Not all tests passed.
1: Compare output
Input
Your output
X 2: Compare output
Input
Output differs. See highlights below. Special character legend
Your output
numbers1.txt
Expected output
Total: 100
Closing file
numbers2.txt
Tester.py
total = 0
infile open (input())
try:
Total: 554
Closing file
Error: Not an integer value.
except ValueError :
Error: Not an integer value.
Total: 554
Closing file
for line in infile :
value = int(line)
total= total + value
finally :
print("Error: Not an integer value.")
Load default template...
print("Total:", total)
print("Closing file")
infile.close()
Transcribed Image Text:4043143640684x3y7 In the code below, we compute the sum of integers in a file by reading them one line at a time. Rearrange the following lines of code so that the input file is closed even if the int function raises an exception. Follow Programming Tip "Do not use except and finally in the same try statement" in the Exception Handling section by placing the try block and finally clause inside the outer try block. How to use this tool Unused try : Check You've added 7 blocks, but 8 were expected. Not all tests passed. 1: Compare output Input Your output X 2: Compare output Input Output differs. See highlights below. Special character legend Your output numbers1.txt Expected output Total: 100 Closing file numbers2.txt Tester.py total = 0 infile open (input()) try: Total: 554 Closing file Error: Not an integer value. except ValueError : Error: Not an integer value. Total: 554 Closing file for line in infile : value = int(line) total= total + value finally : print("Error: Not an integer value.") Load default template... print("Total:", total) print("Closing file") infile.close()
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
Exception Handling Keywords
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