【不具合内容】
Pythonでリストを順にprint文で出力している時に発生。
stations = ["東京", "品川", "新横浜", "小田原", "熱海"]
print(stations[0],stations[1],stations[2],stations[3],stations[4],stations[5])
IndexError Traceback (most recent call last)
<ipython-input-21-82134eb748e5> in <cell line: 1>()
----> 1 print(stations[0],stations[1],stations[2],stations[3],stations[4],stations[5])
IndexError: list index out of range
【原因】
print文の「)」閉じカッコがない。
print文以外でも対になるカッコが抜けていたりすると発生する。
【解決方法】
「)」閉じカッコを追記する。
stations = ["東京", "品川", "新横浜", "小田原", "熱海"]
print(stations[1])
以下のコマンドを実行する。
gcloud auth login
「Go to the following link in your browser:」に続いてサインイン用のリンクが出力されるためクリックして認証コードをコピーする。
上記画面の「Copy」ボタンをクリックして認証コードをコピーした後、gcloudコンソールに戻り「Enter authorization code:」に続いてコピーした認証コードを貼り付けて入力する。