

of China Hungary India Indonesia Ireland Israel Italy Jamaica Japan Kuwait Latvia Lithuania Luxembourg Macao S.A.R. Anguilla Antigua and Barbuda Argentina Aruba Australia Austria Bahamas Bangladesh Barbados Belarus Belgium Bermuda Bolivia Brazil Bulgaria Canada Cayman Islands Chile China Mainland Colombia Costa Rica Croatia Curaçao Cyprus Czech Republic Denmark Dominican Republic Ecuador Egypt El Salvador Estonia Finland France Germany Greece Grenada Guatemala Guyana Haiti Honduras Hong Kong S.A.R.No need to move the file or amend the path. I was able to read 892 lines successfully after unchecking it. When I checked the properties of the file, I saw that it was read-only. TrainReader = csv.reader(trainCsv, delimiter=',', quotechar='"') TrainPath = 'F:/Projects/Python/coursera/intro-to-data-science/kaggle/data/train.csv' I did get more information like this: import csv The error message says: IOError: Initializing from file failed TrainFile = "F:/Projects/Python/coursera/intro-to-data-science/kaggle/data/train.csv" When I try this I get error messages that aren't making the problem clear to me: import pandas as pd None of the examples I see read from anything other than a simple file name (e.g. csv file on my F: drive on Windows 7 64-bit that I'd like to read into pandas and manipulate.
