Python (Wuyi): Python VARs () function

Source: Internet
Author: User
Tags builtin vars

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
    • Object--Objects
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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.