Answers for "how to get the current line number in python"

0

how to get the current line number in python

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()
Posted by: Guest on August-18-2020

Code answers related to "how to get the current line number in python"

Python Answers by Framework

Browse Popular Code Answers by Language