prog11_1.py

cls = type("hello")
print(cls)
s = cls(1.234e+2)
print(s)

# プログラム11-1(オブジェクトのクラスを得る)