Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Would anyone mind debugging this python code please? def main(): # Open the video_times.txt file for reading. video_file = open('video_times.txt', 'r') # Initialize an accumulator

Would anyone mind debugging this python code please?

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_2

Step: 3

blur-text-image_3

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

Intelligent Information And Database Systems 12th Asian Conference ACIIDS 2020 Phuket Thailand March 23 26 2020 Proceedings

Authors: Pawel Sitek ,Marcin Pietranik ,Marek Krotkiewicz ,Chutimet Srinilta

1st Edition

9811533792, 978-9811533792

More Books

Students also viewed these Databases questions

Question

Explain the key areas in which service employees need training.

Answered: 1 week ago

Question

Understand the role of internal marketing and communications.

Answered: 1 week ago