組み込み関数 isinstance() 使い方 bool = isinstance( obj , type) objの型がtypeと一致した場合Trueが返ります bool1 = isinstance(111,int) print(bool1) #結果 Tru... 組み込み関数