サーバレス練習帳

着眼大局着手小局

2017-11-05から1日間の記事一覧

【PYTHONのエラー回避方法】IndexError: list index out of range

リスト(配列)に対して存在しないインデックを指定した際に発生する例外です。“IndexError: list index out of range” それが、なんと、こんな方法で回避できるとは、、、! result = []with open('hoge.txt', 'r') as f: for line in f: tmp = line.rstrip…

pythonにインストールする(Raspberry Piであっても一緒です。)

OさんのRaspberry Pi3に次の2つをインストールさせて頂きました。 $ pip install requests インストール方法 — requests-docs-ja 1.0.4 documentation $ pip install pyserial qiita.com