-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
WAB2014
authored and
WAB2014
committed
Jul 30, 2014
1 parent
53bd07d
commit 9a4c2d5
Showing
3 changed files
with
389 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.