Change int to float

This commit is contained in:
lafrite 2013-05-27 20:30:31 +02:00
parent 7c0a8de154
commit 9834a0424f
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ def extrait_from_file(file_name):
reader = csv.reader(file, delimiter = ",")
compte = list(reader)
for i in compte[1:]:
i[1] = int(i[1])
i[2] = int(i[2])
i[1] = float(i[1])
i[2] = float(i[2])
return compte
finally:
file.close()