#-------------------------------- # Name: read_lines.py # Author: Kevin Harris # Last Modified: 02/13/04 # Description: This Python script demonstrates # how to use fileinput to read # each line of a given file. #-------------------------------- import fileinput for line in fileinput.input( "test.txt" ): print line, raw_input( ' Press Enter to exit...' )
希望本文所述对大家的Python程序设计有所帮助。