Last active
February 2, 2021 08:35
-
-
Save deanjamesss/a69f06d5372a40b4d298af618dc4d8cf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import pandas as pd | |
| # From our CSV we only want to read columns 1 & 2. | |
| df = pd.read_csv('read_csv_usecols.csv', usecols=['col1', 'col3']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment