可惡今天抽的各種卷我都沒中獎
嗚嗚
希望下禮拜可以輪到我
好今天要來練習讀檔案的包裝程式
會讀這兩個
# file實體物件:包裝檔案讀取的程式
class file:
# 初始化函示
def __init__(self,name):
self.name=name
# 尚未開啟檔案:初期是none (python代表空)
self.file=None
# 實體方法
def open(self):
self.file=open(self.name,mode="r",encoding="utf-8")
# 實體方法
def read(self):
return self.file.read()
# 讀取第一個檔案
f1=file("data1.txt")
f1.open()
data=f1.read()
print(data)
# 讀取第二個檔案
f2=file("data2.txt")
f2.open()
data=f2.read()
print(data)