我在Documents中有一个CSV文件,我想用python2打开它。 我跑这个
print os.getcwd()
/Users/baicai
我在/Users/baicai/Documents/blabla.csv
中的文件我运行此获取错误
df= open('/Documents/blabla.csv')
IOError:[Errno 2]没有这样的文件或目录:'/ Document / labla.csv'
或者
f=open('/User/baicai/Documents/blabla.csv')
IOError:[Errno 2]没有这样的文件或目录:'/ User / baicai / Document / labla.csv'
如何阅读?感谢
答案 0 :(得分:3)
df = open('Documents/blabla.csv') # remove leading /
使用前导/
,操作系统认为您需要绝对路径而不是相对路径。
或
f=open('/Users/baicai/Documents/blabla.csv') # Users, not User
这只是一个错字: - )