前提・実現したいこと
入門Python3(オライリー・ジャパン)のp237において、YAMLファイルであるmcintyre.yamlを読み込みたいです。ご回答よろしくお願いします。
発生している問題・エラーメッセージ
以下のようにmcintyre.yamlファイルが見つからない、と表示されます。
該当のソースコード
Python
1kotaMBA:~ kota$ pip install PyYAML 2Requirement already satisfied: PyYAML in ./.pyenv/versions/3.6.5/lib/python3.6/site-packages (5.3.1) 3kotaMBA:~ kota$ python3 4Python 3.6.5 (default, May 4 2020, 10:17:02) 5[GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.32.59)] on darwin 6Type "help", "copyright", "credits" or "license" for more information. 7>>> import yaml 8>>> with open('mcintyre.yaml', 'rt') as fin: 9... text = fin.read() 10... 11Traceback (most recent call last): 12 File "<stdin>", line 1, in <module> 13FileNotFoundError: [Errno 2] No such file or directory: 'mcintyre.yaml' 14
補足情報(FW/ツールのバージョンなど)
PCはMacです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/14 03:44
2020/09/14 05:04
2020/09/14 12:21