前提・実現したいこと
Python初心者です。
PythonでCSVのデータをPandasで読み込もうと思っています。
PandasとGlobをインポートコードを書くとエラーが発生しました。
しょっぱなから躓いてしまい途方に暮れています。
解決方法等アドバイスいただけますと幸いです。
発生している問題・エラーメッセージ
ValueError Traceback (most recent call last)
<ipython-input-39-7c9d59a78d02> in <module>
----> 1 pd.read_excel(filepath)
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in read_excel(io, sheet_name, header, names, index_col, usecols, squeeze, dtype, engine, converters, true_values, false_values, skiprows, nrows, na_values, keep_default_na, verbose, parse_dates, date_parser, thousands, comment, skipfooter, convert_float, mangle_dupe_cols, **kwds)
302
303 if not isinstance(io, ExcelFile):
--> 304 io = ExcelFile(io, engine=engine)
305 elif engine and engine != io.engine:
306 raise ValueError(
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in init(self, io, engine)
819 self._io = stringify_path(io)
820
--> 821 self._reader = self._enginesengine
822
823 def fspath(self):
~\anaconda3\lib\site-packages\pandas\io\excel_xlrd.py in init(self, filepath_or_buffer)
19 err_msg = "Install xlrd >= 1.0.0 for Excel support"
20 import_optional_dependency("xlrd", extra=err_msg)
---> 21 super().init(filepath_or_buffer)
22
23 @property
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in init(self, filepath_or_buffer)
342 filepath_or_buffer = BytesIO(urlopen(filepath_or_buffer).read())
343 elif not isinstance(filepath_or_buffer, (ExcelFile, self._workbook_class)):
--> 344 filepath_or_buffer, _, _, _ = get_filepath_or_buffer(filepath_or_buffer)
345
346 if isinstance(filepath_or_buffer, self._workbook_class):
~\anaconda3\lib\site-packages\pandas\io\common.py in get_filepath_or_buffer(filepath_or_buffer, encoding, compression, mode)
198 if not is_file_like(filepath_or_buffer):
199 msg = f"Invalid file path or buffer object type: {type(filepath_or_buffer)}"
--> 200 raise ValueError(msg)
201
202 return filepath_or_buffer, None, compression, False
ValueError: Invalid file path or buffer object type: <class 'list'>
該当のソースコード
import pandas as pd
from glob import glob
filepath = glob('python_practise/*.csv')
pd.read_excel(filepath)
試したこと
ファイルがList型になっているとのことなので、ファイルの型が適切ではないと思い、str(filepath)で型変換すると、次は以下のエラーメッセージが出ました。(*は具体的なファイル名です)
FileNotFoundError: [Errno 2] File ['python_practise*.csv'] does not exist: "['python_practise\*.csv']"
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/08 03:02
2022/01/08 03:15