1. 程式人生 > >笨辦法15讀取文件

笨辦法15讀取文件

code 結果 size open Coding inpu tex you log

代碼如下:

 1 #coding:utf-8
 2 from sys import argv 
 3 
 4 script, filename = argv 
 5 
 6 txt = open(filename) #將打開的文件內容賦值給變量txt
 7 
 8 print "Here‘s your file %r:" % filename 
 9 print txt.read() #讀取txt的內容
10 
11 print "Type the filename again:"
12 file_again = raw_input("> ") #玩家輸入新文件的文件名,並且將文件名賦值給file_again
13 14 txt_again = open(file_again) #將新文件打開,並將新文件內容賦值給txt_again 15 16 print txt_again.read() #讀取txt_again的內容 17 18 txt.close() 19 txt_again.close()

運行結果:
技術分享

笨辦法15讀取文件