Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!