Skip to content

Instantly share code, notes, and snippets.

@MOOOWOOO
Last active March 12, 2016 08:44
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 MOOOWOOO/1aaeb9632183d08e298b to your computer and use it in GitHub Desktop.
Save MOOOWOOO/1aaeb9632183d08e298b to your computer and use it in GitHub Desktop.
python 打印当前行数和所在的函数名
import sys
def get_cur_info():
_ = sys._getframe()
return (_.f_code.co_name, _.f_back.f_lineno) # funcname, lineno
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment