2016年8月6日

python类

摘要: def Main(): class A: pass a=A() a.x=1 print a.x if __name__=="__main__": Main() #-*-coding:utf-8-*- import sys def Main(): class A: def __init__(self): ... 阅读全文

posted @ 2016-08-06 18:06 与非朋仔 阅读(143) 评论(0) 推荐(0) 编辑

python获取

摘要: def anc():pass print anc.__name__ def timeit(func): def run(*argv): print "this function name is", func.__name__ if argv: ret = func(*argv) else: ... 阅读全文

posted @ 2016-08-06 16:43 与非朋仔 阅读(161) 评论(0) 推荐(0) 编辑

如何获得调用函数的函数名

摘要: def get_cur_info(): """Return the frame object for the caller's stack frame.""" try: raise Exception except: f = sys.exc_info()[2].tb_frame.f_back ret 阅读全文

posted @ 2016-08-06 15:38 与非朋仔 阅读(224) 评论(0) 推荐(0) 编辑

导航