📜  打印当前行号 python 代码示例

📅  最后修改于: 2022-03-11 14:46:01.828000             🧑  作者: Mango

代码示例2
from inspect import currentframe

def get_linenumber():
    cf = currentframe()
    return cf.f_back.f_lineno

print "This is line 7, python says line ", get_linenumber()