以下のようなfoo.pyを作成しました。
python
1import pandas as pd 2 3df = pd.read_csv("foo.csv") 4print(df)
実行すると以下のようなエラーが出てきてしまいます。どのようにしたら実行できますか?
回答よろしくお願いします。
bash
1python foo.py 2 3AttributeError: module 'pandas' has no attribute 'read_csv'
回答2件
あなたの回答
tips
プレビュー