Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I have a .csv file with three columns and many rows. I am trying to use pandas to read only the third column.
right now I have:
import pandas as pd pd.read_csv(r"C:\test.csv",usecols=(3))
column indexing is zero based, pass 2 to read the third column:
2
pd.read_csv(r"C:\test.csv",usecols=[2])
Add a comment
Adding on to @EdChum answer, you can also simply use range
range
pd.read_csv(r"C:\test.csv",usecols=range(5))
to read the first 5 columns. If you columns aren't numeric you can always use header=None to have pandas ignore the columns
header=None
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.