createfile
函數(shù)可以用來創(chuàng)建一個新的文件,并返回一個文件對象。
首先,我們需要導(dǎo)入os
模塊,以便使用createfile
函數(shù)。
定義createfile
函數(shù):
import os
def createfile(filename):
try:
file = open(filename, 'w') # 打開文件,以寫入模式
file.close() # 關(guān)閉文件
print("文件創(chuàng)建成功")
except Exception as e:
print("文件創(chuàng)建失?。?quot;, str(e))
使用createfile
函數(shù):
filename = "example.txt"
createfile(filename)
這將在當前目錄下創(chuàng)建一個名為example.txt
的空文件。如果文件創(chuàng)建成功,將輸出"文件創(chuàng)建成功";如果文件創(chuàng)建失敗,將輸出"文件創(chuàng)建失敗"和錯誤信息。
注意:在使用createfile
函數(shù)之前,請確保你具有適當?shù)奈募懭霗?quán)限。