Adding Line Numbers to a Python Script : File Text « File « Python






Adding Line Numbers to a Python Script

import fileinput

for line in fileinput.input(inplace=1):
    line = line.rstrip()
    num = fileinput.lineno()
    print '%-40s # %2i' % (line, num)


           
       








Related examples in the same category

1.Define class to deal with files