zad4 test16

This commit is contained in:
massta 2020-04-05 19:58:09 +02:00
parent 4085f90893
commit 509b808e29
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ i = 0
with open('averagesrr.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter=' ')
for row in plots:
x.append(float(round(row[0], 2)))
x.append(float(row[0]))
y.append(int(i))
i=i+1

View File

@ -8,7 +8,7 @@ i = 0
with open('averagewer.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter=' ')
for row in plots:
x.append(float(round(row[0], 2)))
x.append(float(row[0]))
y.append(int(i))
i=i+1