Skip to content

Commit

Permalink
adding football reading file
Browse files Browse the repository at this point in the history
  • Loading branch information
WAB2014 authored and WAB2014 committed Jul 30, 2014
1 parent 53bd07d commit 9a4c2d5
Show file tree
Hide file tree
Showing 3 changed files with 389 additions and 0 deletions.
8 changes: 8 additions & 0 deletions FOOTBALLreader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import open('EO.csv', 'r') as file:
reader = csv.reader(file)
i = 0
for row in reader:
print(', '.join(row[1:7]))
if i == 5:
break
i += 1
Loading

0 comments on commit 9a4c2d5

Please sign in to comment.