Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You have opened a csv file with comma separated integer data. The opened file is intended to be read, and is being stored in the

You have opened a csv file with comma separated integer data. The opened file is intended to be read, and is being stored in the variable ET.
What is the code below doing with this information?
homes =[]
for e in ET:
e = e.split(",")
sum =0
for t in range(1,len(e)):
sum += int(e[t])
e[0]= sum
homes.append(e)
If you believe that more than one answer applies choose the best answer.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions