How does Python use a variable as the function name?

Source: Internet
Author: User
How does Python use a variable as the function name? PHP has variable function usage (see http://www.php.net/manual/en/functions.variable-functions.php)

There is a string variable

Now we want to use the value of this variable as a function name to call

The code is as follows:

Def bar (): return 'bar' foo = 'bar' foo () # here you want to call bar ()

I wonder if Python has such usage?

Haha, python is so powerful, and python can certainly support it.

Python has an eval function (which seems to be available in many languages) to solve this problem.

The code is as follows:

Def foo (): print 'hi' t = eval ('Foo') t ()

Question 2: Can python import a module with a variable value?

Foo = 'bar' import foo # here you want to import bar

Another function is used in this place...

Code:

M = 'sys 'exec "import" + m

So OK.

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.