Python Python オブジェクトの型を確認する hawk 2020-06-10 Pythonではtype()などでも確認できますが、isinstance関数を使うことが推奨されます。公式のドキュメントはこちらから。typeの公式ドキュメントはこちらから。 import types s = "hello, world" print(isinstance(s, str)) i = 42 print(isinstance(i, int))