# Python CodeRecipe|setattr()の使い方

HomeFunctions

# setattr()の例1

Change the value of the "age" property of the "person" object:

    class Person:  name = "John"  age = 36  country = "Norway"
    setattr(Person, 'age', 40)

# setattr()の定義及び使い方

setattr()関数は、 指定されたオブジェクトの指定された属性。

# setattr()の構文

    setattr(object, attribute, value)

# setattr()の引数

オブジェクト 必須。オブジェクト。

属性ぞくせい 必須。設定する属性の名前

value:必須。指定した属性に指定する値

Related Pages The delattr() function, to remove an attribute The getattr() function, to get the value of an attribute The hasattr() function, to check if an attribute exist

HomeFunctions