我的课分配有问题。提示是这样的: “使用提供的两个数据文件之一*,编写程序以读取文件,以某种方式操纵读取的数据,并生成输出报告。文件为CSV格式,您的输出报告可以是txt文件,也可以是CSV文件。” Here is the row of data I am focusing on 我想在这行数字中找到最大值和最小值。这是到目前为止的代码:
import csv
first_row = True
with open('degree_data.csv', 'r') as csvfile:
degree_reader = csv.reader(csvfile, delimiter=',')
row_num = 1
first_row = True
for row in degree_reader:
if first_row: #Skips headings
first_row = False
continue
numbers = [int(cell) for cell in row[2:]] #convert the strings to ints
if row[1] == 'United States':
当我找到最大值和最小值时,如何精确地从中产生输出文件?