返回程序运行中当前行
Posted liuliu-word
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了返回程序运行中当前行相关的知识,希望对你有一定的参考价值。
"""This provides a lineno() function to make it easy to grab the line number that we‘re on. """ import inspect def lineno(): """Returns the current line number in our program.""" return inspect.currentframe().f_back.f_lineno if __name__ == ‘__main__‘: print "hello, this is line number", lineno() print print print "and this is line", lineno()
以上是关于返回程序运行中当前行的主要内容,如果未能解决你的问题,请参考以下文章