Skip to content

Commit 3bfa365

Browse files
committed
Editing
1 parent f9717a1 commit 3bfa365

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Notes/01_Introduction/06_Files.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,18 @@ Try it:
228228
>>>
229229
```
230230

231+
### Commentary: Shouldn't we being using Pandas for this?
232+
233+
Data scientists are quick to point out that libraries like
234+
[Pandas](https://pandas.pydata.org) already have a function for
235+
reading CSV files. This is true--and it works pretty well.
236+
However, this is not a course on learning Pandas. Reading files
237+
is a more general problem than the specifics of CSV files.
238+
The main reason we're working with a CSV file is that it's a
239+
familiar format to most coders and it's relatively easy to work with
240+
directly--illustrating many Python features in the process.
241+
So, by all means use Pandas when you go back to work. For the
242+
rest of this course however, we're going to stick with standard
243+
Python functionality.
244+
231245
[Contents](../Contents) \| [Previous (1.5 Lists)](05_Lists) \| [Next (1.7 Functions)](07_Functions)

0 commit comments

Comments
 (0)