getの使い方(適当)
# -*- coding: utf-8 -*- class Hoge: HOGE_DICT = { '1' : u'ナズェミテルンディス', '2' : u'オンドゥルルラギッタンディスカ', } print HOGE_DICT['1'] @classmethod def hoge(cls): return cls.HOGE_DICT.get('2') hoge = Hoge() # ナズェミテルンディス print hoge.hoge() # オンドゥルルラギッタンディスカ