目錄1. 開啟檔案:1. 開啟檔案:open
2. 關閉檔案:close
3. 整體**:open+close
使用open函式,可以開啟乙個已經存在的檔案,或者建立乙個新檔案
open(檔名,訪問模式)
舉例:f = open('test.txt', 'w')
訪問模式:
"""
write()預設是gbk?
常見檔案訪問模式
w寫入: 檔案不存在,會建立;檔案存在,會覆蓋(write())
r讀:只能讀取資料,不能寫資料,檔案不存在,會報錯(read())
a追加:檔案不存在,會建立;檔案存在,會追加(write())
1.開啟檔案
2.寫入檔案/讀取內容
3.關閉檔案
""""""
w寫入: 檔案不存在,會建立;檔案存在,會覆蓋
"""# 1.開啟檔案
f=open(r"d:file_pythonfirst.txt","w") # 不識別大小寫?
# 2.寫入檔案
f.write("hello world")
# 3.關閉檔案
f.close()
"""r讀取
"""# 1.開啟檔案
f=open(r"d:file_pythonfirst.txt","r") # 不識別大小寫?
# 2.獲取內容
content=f.read()
print(content)
# 3.關閉檔案
f.close()
"""a追加
"""# 1.開啟檔案
f=open(r"d:file_pythonfirst.txt","a") # 不識別大小寫?
# 2.寫入檔案
f.write("rhello world")# 換行追加hello world
# 3.關閉檔案
f.close()
2. 關閉檔案
close( )
示例如下:
# 新建乙個檔案,檔名為:test.txt
f = open('test.txt', 'w')
# 關閉這個檔案
f.close()
3. 整體**(in pycharm):
"""
檔案操作:
1. 開啟檔案
2. 關閉檔案
"""# 1.開啟檔案
"""檔案路徑的表達:
相對路徑:不以碟符開頭的路徑。
"""# 絕對路徑:在已建好的file_python資料夾內,新建/覆蓋first.txt
f=open(r"d:file_pythonfirst.txt","w")
# 2.關閉檔案:開啟檔案必須關閉,否則會導致記憶體洩漏(占用記憶體)
f.close()
MongoDB win10安裝報錯
mongodb win10安裝報錯 i control main automatically disabling tls 1.0,to force enable tls 1.0 specify ssldisabledprotocols none 解決辦法 windows service contro...
win10修改ip報錯
win10修改ip報錯 出現了乙個意外情況 解決 使用命令列修改 以管理員身份執行powershell,執行 netsh inte ce ipv4 再 set address wlan static ip 子網掩碼 預設閘道器 即可。如 set address wlan static 192.168...
XCode10 執行app報錯
原因很簡單 xcode10起,蘋果摒棄了對libstdc 庫的支援轉而支援libc 庫了。為了保證老 能跑,必須將幾個庫複製到對應資料夾 見後 同時修改build phases中的link binary with libraries小節,增加對libstdc 的3個庫的引用 這個鏈結包含乙個指令碼,...