Python怎么调用函数(python函数内调用函数)

1.直接函数调用

这是最简单、最直观的方式:

def test():
    print("This is a test")
test()

2.使用partial()函数

在 的内置库中functools,有一个专用于生成偏函数的偏函数partial。

def power(x, n):
    s = 1
    while n > 0:
        n = n - 1
        s = s * x
    return s


from functools import partial

power_2 = partial(power, n=2)
power_2(3)  # output: 9
power_2(4)  # output: 16

3. 使用 eval()

如果需要动态执行函数,可以使用 eval string 来执行函数。

# demo.py
import sys


def pre_task():
    print("running pre_task")


def task():
    print("running task")


def post_task():
    print("running post_task")


argvs = sys.argv[1:]


for action in argvs:
    eval(action)()

执行:

$ python demo.py pre_task task post_task
running pre_task
running task
running post_task

4. 使用 getattr()

如果把所有的函数都放在类中,并定义为静态方法,就可以使用getattr()get和调用它们。

import sys


class Task:
    @staticmethod
    def pre_task():
        print("running pre_task")


    @staticmethod
    def task():
        print("running task")


    @staticmethod
    def post_task():
        print("running post_task")


argvs = sys.argv[1:]


task = Task()


for action in argvs:
    func = getattr(task, action)
    func()

5. 使用 __dict__()

我们都知道对象有一个__dict__()魔法方法,它存储任何对象的属性和方法。

您可以调用类方法使用__dict__.get

import sys


class Task:
    @staticmethod
    def pre_task():
        print("running pre_task")


func = Task.__dict__.get("pre_task")
func.__func__()
# Output
$ python /tmp/demo.py
running pre_task

6. 使用 global()

在 的内置库中functools,有一个专用于生成偏函数的偏函数partial。

import sys


def pre_task():
    print("running pre_task")


def task():
    print("running task")


def post_task():
    print("running post_task")


argvs = sys.argv[1:]


for action in argvs:
    globals().get(action)()
# Output
$ python /tmp/demo.py pre_task task post_task
running pre_task
running task
running post_task

7. 从文本编译和运行

您可以在字符串中定义您的函数,并使用该compile函数将其编译为字节码,然后用于exec执行它。

pre_task = """
print("running pre_task")
"""
exec(compile(pre_task, '', 'exec'))
# Or from a text file
with open('source.txt') as f:
    source = f.read()
    exec(compile(source, 'source.txt', 'exec'))

8. 使用attrgetter()

在 的内置库中operator,有一个获取属性的方法,称为attrgetter,获取函数后执行。

from operator import attrgetter


class People:
    def speak(self, dest):
        print("Hello, %s" �st)


p = People()
caller = attrgetter("speak")
caller(p)("Tony")
# Output
$ python /tmp/demo.py
Hello, Tony

9. 使用methodcaller()

还有一个methodcaller方法在operator

from operator import methodcaller


class People:
    def speak(self, dest):
        print("Hello, %s" �st)


caller = methodcaller("speak", "Tony")
p = People()
caller(p)
# Output
$ python /tmp/demo.py
Hello, Tony
(0)

相关推荐

  • 如何查看 Python 全部内置变量和内置函数?

    Python 解释器内置了一些常量和函数,叫做内置常量(Built-in Constants)和内置函数(Built-in Functions),我们怎么在 Python IDLE 里得到全部内置常量 ...

  • javascript常用函数(javascript内置函数)

    如果文章和笔记能带您一丝帮助或者启发,请不要吝啬你的赞和收藏,你的肯定是我前进的最大动力为元素添加on方法Element.prototype.on = Element.prototype.addEve ...

  • C语言函数的递归和调用

    C语言的递归函数是比较常用功能,下面小编就给大家介绍C语言的递归函数如何调用. 操作方法 01 首先在Visual Studio 中新建C语言项目,并且在源文件下面新建C语言文件,如下图所示 02 然 ...

  • linux awk 内置函数详细介绍(实例)

    一、算术函数: 以下算术函数执行与 C 语言中名称相同的子例程相同的操作: 函数名 说明 atan2( y, x ) 返回 y/x 的反正切。 cos( x ) 返回 x 的余弦;x 是弧度。 sin ...

  • Python的功能(python用处大吗)

    这是一篇译文,原文地址:        https://realpython.com/inner-functions-what-are-they-good-for/1. 封装内部函数可以免受函数之外的 ...

  • originpro9.1怎么进行函数绘图?Origin9.1函数绘图操作指南

    使用originpro9.1怎么进行函数绘图?方法是什么?Origin提供了函数绘图功能,函数可以是Origin内置函数,也可以是Origin C 编程的用户函数,通过函数绘图,可以将函数的图形方便地 ...

  • excel sum函数使用方法或求和函数sum怎么用

    Excel是大家经常有来整理数据的工具,excel也为我们提供了强大的计算功能.但要达到数据分析的结果就要用到公式,公式又离不开函数,为了工作顺利也要多记住一些函数.那今天我们来认识一下sum函数. ...

  • Excel常用函数之利用sum求和函数求学生总成绩

    Excel是办公常用的软件之一,这里主要介绍在excel2007中求和函数sum的用法,并利用该求和函数求学生的总成绩. 操作方法 01 在excel中常用的使用sum函数处理数据的方法有三种,一种是 ...

  • EXCEL时间日期函数应用解析之日期函数

    EXCEL中内嵌了很多处理日期的函数,使用这些函数可以帮助我们快速的操作日期.下面小编就给大家分享一下如何在EXCEL中使用日期函数. 操作方法 01 首先我们要知道的是Today函数,这个函数用来返 ...