# coding: utf8
def hello( x ) :
print "hello, " + x
return "hello" + x
class Foo() :
def __init__( self ) :
print "初期化"
def __call__( self ) :
print "()付でインスタンス呼び出し"
def method( self ) :
print self.名前
return self.政治 + self.戦闘 + self.智謀
def getMetaClass() :
return type( 'MyClass', (), {'my_func' : lambda self, x : 2 ** x} )