クラス内でローカル変数として宣言された辞書の値を取得するにはどうすればよいですか? 以下の私のソースを見てください。注: 関数 get_current_weather 内でこの変数を宣言すると、正常に動作します
class Weather(object):
weather = {
'January' : 'cold',
'Febrary' : 'cold'
}
def get_current_weather(self):
print weather['January']
weather = Weather()
weather.get_current_weather()
端末エラー:
Traceback (most recent call last):
File "game.py", line 27, in <module>
weather.get_current_weather()
File "game.py", line 24, in get_current_weather
print weather['January']
**TypeError: 'Weather' object is not subscriptable**