Skip to content

Commit de55787

Browse files
committed
Fixed transposed values
1 parent 06bc3a2 commit de55787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/03_Program_organization/06_Design_discussion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ with any file-like/iterable object. For example:
110110
>>> with gzip.open('Data/portfolio.csv.gz', 'rt') as file:
111111
... port = fileparse.parse_csv(file, types=[str,int,float])
112112
...
113-
>>> lines = ['name,shares,price', 'AA,34.23,100', 'IBM,50,91.1', 'HPE,75,45.1']
113+
>>> lines = ['name,shares,price', 'AA,100,34.23', 'IBM,50,91.1', 'HPE,75,45.1']
114114
>>> port = fileparse.parse_csv(lines, types=[str,int,float])
115115
>>>
116116
```

0 commit comments

Comments
 (0)