Python VARs () function
Python built-in functions
Describe
The vars () function returns a Dictionary object for the object's properties and property values.
Grammar
VARs () function syntax:
VARs([object])
Parameters
return value
Returns the object's property and property value of the Dictionary object, and, if there are no parameters, prints the properties and property values of the current call location similar to locals ().
Instance
The following examples show how VARs () is used:
>>>Print(vars()) {‘__builtins__‘: <Module ‘__builtin__ " built-in) Span class= "Hl-code" >>, ' __name__ Span class= "Hl-code" >: ' __main__ __doc__none __package__ ' None< Span class= "Hl-code" > < Span class= "hl-string" > >>> class runoob: ... a = 1 ... < Span class= "hl-quotes" > < Span class= "Hl-code" > & gt;>> print (vars (runoob) { ' a ' : 1 ' __module__< Span class= "hl-quotes" > ' : ' __main____doc__" : none} < Span class= "hl-string" > < Span class= "hl-quotes" >>>> runoob = runoob () /span> < Span class= "Hl-code" > < Span class= "hl-reserved" >>>> print (vars ( runoob) { }
Python: Python vars () function