Here is my code-
import pandas as pd df5=pd.read_csv(r'C:Anaconda3airtravel.csv') print(df5) Month "1958" "1959" "1960" 0 JAN 340 360 417 1 FEB 318 342 391 2 MAR 362 406 419 3 APR 348 396 461 4 MAY 363 420 472 5 JUN 435 472 535 6 JUL 491 548 622 7 AUG 505 559 606 8 SEP 404 463 508 9 OCT 359 407 461 10 NOV 310 362 390 11 DEC 337 405 432
But when I try to access this:-
print(df5['1960'])
I get an error.
KeyError: '1960'
I can't understand why is that happening. File link: https://people.sc.fsu.edu/~jburkardt/data/csv/csv.html
Thanks
2.1m questions
2.1m answers
60 comments
57.0k users