Adding Line Numbers to a Python Script : File Text « File « Python
- Python
- File
- File Text
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