Remove a debug print

This commit is contained in:
2024-02-14 10:55:28 +01:00
parent 4bef1459aa
commit d5deefca8e

View File

@@ -57,7 +57,6 @@ def extraire_notes_matiere(nom_fichier_source, nom_fichier_destination, nom_mati
return return
file_destination.write(matieres[0] + ";" + nom_matiere + "\n") file_destination.write(matieres[0] + ";" + nom_matiere + "\n")
for ligne in lignes[1:]: for ligne in lignes[1:]:
print(ligne)
notes = ligne.split(";") notes = ligne.split(";")
file_destination.write(notes[0] + ";" + notes[index_matiere] + "\n") file_destination.write(notes[0] + ";" + notes[index_matiere] + "\n")
file_source.close() file_source.close()