w3resource
w3resource logo

Python: vars() function

(追記) (追記ここまで)
(追記) (追記ここまで)

vars() function

The vars() function is used to get the __dict__ attribute of the given object.

Version:

(Python 3.2.5)

Syntax:

vars([object])

Parameter:

Name Description Required /
Optional
object Any object with a __dict__attribute. Required

Note: Without an argument, vars() acts like locals(). The locals dictionary is only useful for reads since updates to the locals dictionary are ignored.

Return value:

Returns the __dict__ attribute of the given object.

Example: Python vars() function

class Test:
 def __init__(self, a = 10, b = 20, c = -21, d = 6):
 self.a = a
 self.b = b
 self.c = c
 self.d = d
InstanceOfTest = Test()
print(vars(InstanceOfTest))

Output:

{'d': 6, 'a': 10, 'c': -21, 'b': 20}

Python Code Editor:

[フレーム]

PREV : type()
NEXT : zip()

Test your Python skills with w3resource's quiz



Follow us on Facebook and Twitter for latest update.

(追記) (追記ここまで)


(追記) (追記ここまで)
(追記) (追記ここまで)


AltStyle によって変換されたページ (->オリジナル) /