TypeError: 'str' object is not callableの解決方法
解決したいこと
colaboratoryにてcsvを読み込もうとしたところ、TypeError: 'str' object is not callableとエラーが出てしまい、詰まっています。
発生している問題・エラー
TypeError Traceback (most recent call last)
<ipython-input-27-7849cec36c23> in <module>
----> 1 test = pd.read_csv("https://raw.githubusercontent.com/dphi-official/Datasets/master/exam_scores.csv")
TypeError: 'str' object is not callable
該当するソースコード
test = pd.read_csv("https://raw.githubusercontent.com/dphi-official/Datasets/master/exam_scores.csv")
自分で試したこと
調べたところ、このエラーが出る時は予約語を変数として使っている場合が多いというのを目にしたのですが、その場合どのように対処すれば良いのでしょうか。初心者で申し訳ないのですが、回答していただけるとありがたいです。
0