Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello there would you mind help me with debug this python file pls # read_running_times.py # Chapter 6.2 Page 258 def main(): # Open the

Hello there would you mind help me with debug this python file pls

# read_running_times.py # Chapter 6.2 Page 258

def main(): # Open the video_times.txt file for reading. video_file = open('video_times.txt', 'r')

# Initialize an accumulator to 0.0 total = 0.0

# Initialize a variable to keep count of the videos. count = 0

print('Here are the running times for each video:')

# Get the values from the file and total them. for line in video_file # Convert a line to a float. run_time = float(line)

# Add 1 to the count variable. count += 1

# Display the time. print('Video #', count, ': ', run_time, sep='')

# Add the time to total. total += count

# Close the file video_file.close()

# Display the total of the running times. print('The total running time is', total, 'seconds.')

# Call the main function main()

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database System

Authors: Elmasri Ramez And Navathe Shamkant

7th Edition

978-9332582705

More Books

Students also viewed these Databases questions

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago