Python - 型チェック
公開日:2019-02-28 更新日:2019-05-29
[Python]
1. 概要
型のチェックをするには、type() で型を取り出して is を使って判定します。
2.1 サンプル
type()を使わないと False になります。
print(1 is int)
print("abc" is str)
print(type(1) is int)
print(type("abc") is str)
print(type(True) is bool)
False
False
True
True
True