前提・実現したいこと
エクセルのファイルのデータを開きたい。
発生している問題・エラーメッセージ
Python
1FileNotFoundError Traceback (most recent call last) 2<ipython-input-4-f65807ec2284> in <module>() 3----> 1 with open(r'D:\Users\tseikyou\Housing.xlsx') as f: 4 2 print(type(f)) 5 6FileNotFoundError: [Errno 2] No such file or directory: 'D:\Users\tseikyou\Housing.xlsx' 7 8
該当のソースコード
Python
1import numpy as np 2import pandas as pd 3 4from scipy import stats 5import statsmodels.api as sm 6 7import matplotlib.pyplot as plt 8 9 10import os, inspect 11if "Housing.xlsx" not in locals(): 12 fx = inspect.getframeinfo(inspect.currentframe())[0] 13else: 14 fx = Housing.xlsx 15 16os_dir = os.path.dirname(os.path.abspath(fx)) 17print(os_dir) 18 19os.path.abspath("Housing.xlsx") 20 21with open(r'D:\Users\tseikyou\Housing.xlsx') as f: 22 print(type(f))
試したこと
os.path.abspath("Housing.xlsx")
の部分を足してみましたが、再度同じエラーが出てしまいました。
お分かりになる方、ご教示頂ければ幸いです。
よろしくお願い致します。
補足情報(FW/ツールのバージョンなど)
Python 3.6.5