[Python] python dynamic call module & amp; Class & amp; Method

Source: Internet
Author: User

I always want to know if python is similar to $ classname-> $ method () or call_user_func in php.
Today I have time to check the sample code:
Classname. py
 
1 #! /Usr/bin/python
2
3 class classname:
4 def mod1 (self ):
5 pass
6
7 def echo (self ):
8 print "test"
 
Test. py
 
1 #! /Usr/bin/python
2
3 def test ():
4 clsname = "classname"
5 method = "echo"
6
7 obj = _ import _ (clsname) # import module
8 c = getattr (obj, clsname)
9 obj = c () # new class
10 # print (obj)
11 # obj. echo ()
12 mtd = getattr (obj, method)
13 mtd () # call def
14
15 if _ name _ = '_ main __':
16 test ()
 
 
/Usr/bin/python test. py
 
 
Think in coding

 


From bluefrog

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.