# Python CodeRecipe|hasattr()の使い方
# hasattr()の例1
class Person:
name = "John"
age = 36
country = "Norway"
x = hasattr(Person, 'age')
# hasattr()の定義及び使い方
hasattr()関数はTrueを指定すると、指定したオブジェクトに指定した 属性、それ以外の場合はFalse。
# hasattr()の構文
hasattr(object, attribute)
# hasattr()の引数
object:必須。オブジェクト。
attribute:存在するかどうかをチェックする属性の名前