Reputation: 781
I have tried pd.read_csv('../input/nasdaq-list/nasdaq-companies.csv',error_bad_lines=False,delimiter='\t')
but still with the same result.
Thanks.
Upvotes: 0
Views: 31
Reputation: 7604
You should just use this:
pd.read_csv('../input/nasdaq-list/nasdaq-companies.csv', error_bad_lines=False, sep=';')
Upvotes: 2