# -*- coding: utf-8 -*-
import csv
import random
nomfichier="grosfichier2.csv"
tableau = []
with open(nomfichier, newline='') as csvfile:
objetcsv = csv.reader(csvfile, delimiter=',')
for ligne in objetcsv:
tableau.append(ligne)
def max_pt_date(points,date):
points = 0
for ligne in tableau:
if (ligne[1] == date):
if (int(ligne[3]) > points):
points = int(ligne[3])
return points
def listeDates():
dates = []
colonne = 1
for ligne in tableau:
if not (ligne[colonne] in dates) and ligne[colonne] != 'Date' :
dates.append(ligne[colonne])
return dates
def max_pt_dates_tot(date):
tout = []
lesDates = listeDates()
for date in lesDates:
tout.append([date,max_pt_date,(date)])
return tout
def toutlesmax():
tout = []
for date in listeDates():
tout.append(max_pt_dates_tot(date))
return tout
for ligne in toutlesmax():
print(ligne)
这段代码的目的是在csv文件中查找每个日期的每个最大生产点,其格式为:2022-04-20_11:58:02。该文件包含多个月份和年份的日期。
代码以一种我从未见过的方式返回值,有人能帮助我吗?
当您忘记在函数末尾添加()时,通常会发生这种情况。我想我看到你的问题在max_pt_dates_tot函数。max_pt_date和(date)之间有一个逗号。