Python detects whether a variable has a defined method

Source: Internet
Author: User
Tags vars

The examples in this article describe how Python detects a variable's definition. Share to everyone for your reference. as follows:

The first method uses the built-in function locals ():

' TestVar ' in Locals (). Keys ()

The second method uses the built-in function dir ():

' TestVar ' in Dir ()

The third method uses the built-in function VARs ():

VARs (). Has_key (' TestVar ')

The test is as follows:

?

1 2 3 4, 5 6 7 8 9 10 11 12 13 14 15 #testvar未定义 in [1]: ' TestVar ' in locals (). The keys () out[1]: false in [2]: ' TestVar ' in Dir () out[2]: False in [3]: VARs (). has _key (' TestVar ') out[3]: False #定义testvar in [4]: Testvar=1 in [5]: "TestVar ' in Locals" (). Keys () out[5]: True in [6]: ' Test var ' in Dir () Out[6]: true in [7]: VARs (). Has_key (' TestVar ') out[7]: True

There is also the use of try...except ... own definition, in short, a lot of methods.

I hope this article will help you with your Python programming.

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.