摘要: 1.只取函数名1 import sys2 def getFunctionName():3 return sys._getframe(1).f_code.co_name4 5 def run():6 print 'functionname:', getFunctionName()7 8... 阅读全文
posted @ 2015-01-09 15:58 郭导技术小站 阅读(936) 评论(0) 推荐(0) 编辑