組み込み関数 issubclass() 使い方 bool = issubclass( type1 , type2 ) type1がtype2のサブクラスの場合Trueが返ります bool1 = issubclass(bool,int) print(bool1)... 組み込み関数