python中生成txt文件的方法:1、在win操作系統中找到python程序目錄;2、打開idle工具;3、在idle中新建一個shell腳本;4、輸入“import os”指令導入os模塊;5、通過“text_create('txt文件名','內容描述')”命令生成txt文件即可。
具體操作方法:
1、在win系統的開始菜單中找到python程序。
2、在python程序目錄中找到并打開idle工具程序。
3、在idle工具中點擊左上角的“File”并選擇“New File”新建一個shell腳本。
4、在shell腳本中輸入以下指令導入os模塊。
import os #導入os模塊
5、最后通過以下命令生成txt文件即可。
text_create('txt文件名','內容描述')
相關實例:
#導入os模塊
import os
#創建一個txt文件
def text_create(name, msg):
#自動獲取桌面路徑
desktop_path = os.path.join(os.path.expanduser('~'),"Desktop/")
full_path = desktop_path + name + '.txt' # 也可以創建一個.doc的word文檔
file = open(full_path, 'w')
file.write(msg)
text_create('my_txt','hello world')
#創建一個名為my_txt的txt文件,內容為hello world