python 获取当前行号python的功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取当前行号python的功能相关的知识,希望对你有一定的参考价值。

"""This provides a lineno() function to make it easy to grab the line
number that we're on.

Danny Yoo (dyoo@hkn.eecs.berkeley.edu)
"""

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()

以上是关于python 获取当前行号python的功能的主要内容,如果未能解决你的问题,请参考以下文章

python语言如何使用print()打印当前行

python代码打印行号,文件名

python 输出当前行号

python - 使用 python 和 pymssql 获取一系列行号之间的行

Python从导入的模块中获取类的行号

如何使用python获取丢失的记录行号和列名?