迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

在 Python 中获取函数名

作者:迹忆客 最近更新:2023/12/21 浏览次数:

本教程将介绍如何在 Python 中获取函数名。


使用 __name__ 属性来获取 Python 中的函数名

在 Python 中,每一个在你的项目中声明和导入的函数都会有 __name__ 属性,你可以直接从函数中访问它。

要访问 __name__ 属性,只需输入函数名,不加括号,然后使用属性访问器 .__name__。然后它将以字符串的形式返回函数名。

下面的例子声明了两个函数,调用它们,并打印出它们的函数名。

def functionA():
    print("First function called!")


def functionB():
    print("\nSecond function called!")


functionA()
print("First function name: ", functionA.__name__)

functionB()
print("Second function name: ", functionB.__name__)

输出:

First function called!
First function name:  functionA
  
Second function called!
Second function name:  functionB

注意,这个解决方案也适用于导入的和预先定义的函数。让我们用 print() 函数本身和导入的 Python 模块 os 中的一个函数来试试。

import os

print("Function name: ", print.__name__)
print("Imported function name: ", os.system.__name__)

输出:

Function name:  print
Imported function name:  system

综上所述,在 Python 中获取函数名可以通过使用函数属性 __name__ 轻松完成,这个字符串属性包含了函数名,不含括号。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Pandas read_csv()函数

发布时间:2024/04/24 浏览次数:254 分类:Python

Pandas read_csv()函数将指定的逗号分隔值(csv)文件读取到 DataFrame 中。

Pandas 追加数据到 CSV 中

发布时间:2024/04/24 浏览次数:352 分类:Python

本教程演示了如何在追加模式下使用 to_csv()向现有的 CSV 文件添加数据。

Pandas 多列合并

发布时间:2024/04/24 浏览次数:628 分类:Python

本教程介绍了如何在 Pandas 中使用 DataFrame.merge()方法合并两个 DataFrames。

Pandas loc vs iloc

发布时间:2024/04/24 浏览次数:837 分类:Python

本教程介绍了如何使用 Python 中的 loc 和 iloc 从 Pandas DataFrame 中过滤数据。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便