zad4 test16
This commit is contained in:
parent
4085f90893
commit
509b808e29
@ -8,7 +8,7 @@ i = 0
|
|||||||
with open('averagesrr.txt','r') as csvfile:
|
with open('averagesrr.txt','r') as csvfile:
|
||||||
plots = csv.reader(csvfile, delimiter=' ')
|
plots = csv.reader(csvfile, delimiter=' ')
|
||||||
for row in plots:
|
for row in plots:
|
||||||
x.append(float(round(row[0], 2)))
|
x.append(float(row[0]))
|
||||||
y.append(int(i))
|
y.append(int(i))
|
||||||
i=i+1
|
i=i+1
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ i = 0
|
|||||||
with open('averagewer.txt','r') as csvfile:
|
with open('averagewer.txt','r') as csvfile:
|
||||||
plots = csv.reader(csvfile, delimiter=' ')
|
plots = csv.reader(csvfile, delimiter=' ')
|
||||||
for row in plots:
|
for row in plots:
|
||||||
x.append(float(round(row[0], 2)))
|
x.append(float(row[0]))
|
||||||
y.append(int(i))
|
y.append(int(i))
|
||||||
i=i+1
|
i=i+1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user