Skip to content

Instantly share code, notes, and snippets.

@xuechong87
Created December 24, 2014 07:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xuechong87/5e08c3bb025a1d1f52b3 to your computer and use it in GitHub Desktop.
Save xuechong87/5e08c3bb025a1d1f52b3 to your computer and use it in GitHub Desktop.
python 获取方法名
import inspect
class Test1():
@staticmethod
def printMethodName ():
print( "method:" + inspect.stack()[1][3] + "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment