decolator
とあるコードを読んでいると @classmethod というデコレータが出現。 調べたりしてみた。 # -*- coding: utf-8 -*- class Hey1: def hi(self, name): print "Hi, " + name + "!" print type(Hey1) # <type 'classobj'> print type(Hey1()) # <type 'instance'> print type(Hey1.hi) # <type 'isntancemethod> Hey1().h</type></type></type>…