Update README.rst

This commit is contained in:
2017-08-27 03:41:53 -04:00
committed by GitHub
parent 34c14aca18
commit 44e797d70e
+2 -2
View File
@@ -65,13 +65,13 @@ Intelligently add new columns: ::
Slice rows: ::
>>> print data[:2]
>>> print(data[:2])
[('John', 'Adams', 90), ('George', 'Washington', 67)]
Slice columns by header: ::
>>> print data['first_name']
>>> print(data['first_name'])
['John', 'George', 'Henry']
Easily delete rows: ::