溫馨提示×

createfile函數(shù)怎么定義和使用

小億
163
2023-07-27 21:18:04
欄目: 編程語言

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)限。

0