Question: used the code and the rows are not printing in the end def convert_to_inches(input_file, output_file): # Open the input file for reading with open(input_file, 'r')

used the code and the rows are not printing in the end def convert_to_inches(input_file, output_file): # Open the input file for reading with open(input_file, 'r') as f: reader = csv.DictReader(f) # Define the header for the output file fieldnames = ['City', 'Rainfall (cm)', 'Rainfall (in)'] # Open the output file for writing with open(output_file, 'r+', newline='') as out_f: writer = csv.DictWriter(out_f, fieldnames=fieldnames) # Write the header row to the output file writer.writeheader() # Loop through each row in the input file #rows=[] for row in reader: city = row['city'] rainfall_cm = float(row['rainfall']) rainfall_in = rainfall_cm / 2.54 # Convert cm to inches #rows.append(row) # Write the row to the output file writer.writerow({'City': city, 'Rainfall (cm)': rainfall_cm, 'Rainfall (in)': rainfall_in}) convert_to_inches('rainfallInCM.csv', 'rainfall_inches.csv') 

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!