时间:2021-07-01 10:21:17 帮助过:26人阅读
#-------------------------------- # 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( '\n\nPress Enter to exit...' )
希望本文所述对大家的Python程序设计有所帮助。