Skip to content

Commit

Permalink
Update loop variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
sparce committed Nov 10, 2019
1 parent 5c4806a commit 25f2d20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/readings_03.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ def main():
script = sys.argv[0]
for filename in sys.argv[1:]:
data = numpy.loadtxt(filename, delimiter=',')
for m in data.mean(axis=1):
print(m)
for row_mean in data.mean(axis=1):
print(row_mean)


if __name__ == '__main__':
Expand Down

0 comments on commit 25f2d20

Please sign in to comment.