python_获取当前代码行号_获取当前运行的类名和函数名的方法

获取行号

获取当前行号的方法如下:

import sys  
print "here is :",__file__,sys._getframe().f_lineno  

获取当前的函数名

获取当前的函数名或者运行的类名,需要分开来说

python中获取函数名的情况分为内部、外部

从外部获取函数名

从外部获取函数名字:

def test():
	‘hello world!’
print test.__name__

或者:

getattr(test,'__name__')

从内部获取函数名

1.使用sys模块的方法:
def test():
	print 'hello world'
print sys._getframe().f_code.co_name

2.使用修饰器的方法:
使用修饰器就可以对函数指向一个变量,然后取变量对象的__name__方法。
def timeit(func):
	def run(*argv):
		print func.__name__
		if argv:
			ret = func(*argv)
		else:
			ret = func()
		return ret
	return run
@timeit
def test(a):
	print 'hello'
	print a 
test(1111)

测试结果如下:

>>> test(1111)
test
hello
1111

3.利用 inspect模块动态获取当前运行的函数名
import inspect
def get_current_function_name():
	return inspect.stack()[1][3]
class MyClass:
	def function_one(self):
		print "%s.%s ******"%(self.__class__.__name__, get_current_function_name())
if __name__ == "__main__":
	myclass = MyClass()
	myclass.function_one()
结果:
MyClass.function_one******








posted @ 2017-04-25 20:44  枫奇丶宛南  阅读(141)  评论(0编辑  收藏  举报