1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python #型の同一性をチェック

Posted at

type()メソッドを用いる

type()メソッドは引数に指定した_値_または_変数_の型を引数として返す。このメソッドを用いて型の
同一性をチェックするにはisを用いて以下のように行う。

a = type('Hello, World') is str
b = type('Hello, World') is int
c = type('Hello, World') is not str

実行結果

True
False
False

1
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?