write---> 寫字串
writelines--->寫字串序列(序列:一堆字串,逗號隔開。例如:字典、列表、元組)
file_obj.write(content_obj)
content_obj + '\n' #me:如果不加 \n 則寫入的內容不換行
eg1:
file_obj=open('test.txt','w') 檔案存在則開啟,不存在則建立
file_obj=open('test.txt','w+') "+" 代表可讀,可寫(清空原有內容,然後寫入)
eg2:
file_obj=open('test.txt','w')
conta="hello"
contb="world"
contc="jeapedu.com"
file_obj.write(conta + '\n') #me:如果不加 \n 則寫入的內容不換行《==》conta="hello\n"
file_obj.write(contb + '\n')
file_obj.write(contc + '\n')
file_obj.close()
help(file.writelines)----檢視幫助
只接受乙個引數,這個引數可以是sequence序列即:列表、字典、元組
eg1:
file_obj=open('test.txt','w')
conta="hello\n"
contb="world\n"
contc="jeapedu.com\n"
file_obj.writelines([conta,contb,contc]) 列表
file_obj.writelines((conta,contb,contc)) 元組
file_obj.writelines() 字典
file_obj.close()
python的多執行緒 第24講
author michal date 2019 9 10 from multiprocessing import process import os def obj i print 1111子程序 os.getpid print 會有多個程序執行我 i,os.name if name main li...
第23講 python的讀操作基礎
a file obj.read 預設讀全部 b file obj.read 15 唯讀15個字元 help file.read 檢視幫助 eg2 file obj open test.txt r line1 file obj.readline print line1 line1 me print的逗...
python的單例模式 第21講
author michal date 2019 9 4 單例模式 單例模式主要利用類方法,所有裡面都帶上cls.證明是操作乙個類,否則就不是單例了 單例模式 class obj v none 靜態欄位private修飾的 classmethod 類方法,直接可以用類名呼叫 def get insta...