Python 程序,找到函数中的局部变量数
在本文中,我们将学习如何解决以下问题陈述。
问题陈述 - 给定一个函数,我们需要显示该函数中的局部变量数。
现在,让我们观察下面实现中的解决方案 -
示例
# checking locals def scope(): a = 25.5 b = 5 str_ = 'Tutorialspoint' # main print("Number of local varibales available:", scope.__code__.co_nlocals)
输出
Number of local varibales available: 3
示例
# checking locals def empty(): pass def scope(): a, b, c = 9, 23.4, True str = 'Tutiorialspoint' # main print("Number of local varibales available:",empty.__code__.co_nlocals) print("Number of local varibales available:",scope.__code__.co_nlocals)
输出
Number of local varibales available: 0 Number of local varibales available: 4
结论
在本文中,我们学习了如何制作一个 Python 程序来找到函数中的局部变量数
广告