笨辦法15讀取檔案

2021-08-07 12:07:33 字數 609 閱讀 3696

**如下:

#coding:utf-8

from sys import argv

script, filename = argv

txt = open(filename) #將開啟的檔案內容賦值給變數txt

print

"here's your file %r:" % filename

print txt.read() #讀取txt的內容

print

"type the filename again:"

file_again = raw_input("> ") #玩家輸入新檔案的檔名,並且將檔名賦值給file_again

txt_again = open(file_again) #將新檔案開啟,並將新檔案內容賦值給txt_again

print txt_again.read() #讀取txt_again的內容

txt.close()

txt_again.close()

執行結果:

笨辦法16讀寫檔案

如下 coding utf 8 from sys import argv script,filename argv print we re going to erase r.filename 提示語句,告知使用者將抹掉檔案 print if you don t want that,hit ctrl ...

笨辦法學python 小記 從A讀取資料寫入到B

coding utf 8 更多檔案操作 從a讀取資料寫入到b 從自帶庫中匯入argv和exists函式 from sys import argv from os.path import exists script,from file,to file argv print coping from s ...

笨辦法學Python

1.知識點 13節講的主要是module 模組 的概念,常用的語法是from xx import 依託於python強大的模組庫,使得呼叫十分輕鬆,功能十分強悍。argv叫做引數變數,可以理解為乙個包裹,在解包 unpack 的時候,將引數值賦給不同的變數名,其中第乙個變數是 隱藏 的,用來指代檔案...