createTxt.py
作者:互联网
from DataCleaning.library.functions.changeDirectory import *
def createTxt(string, target, targetPath = ""):
tempWD = os.getcwd()
if targetPath != "":
os.chdir(targetPath)
else:
development2Processed()
with open(target, "w", encoding='utf-8') as f:
f.write(string)
os.chdir(tempWD)
标签:chdir,createTxt,targetPath,py,tempWD,os,target 来源: https://www.cnblogs.com/zhulimin/p/15369454.html