appendString2Txt.py

from DataCleaning.library.functions.changeDirectory import *

def appendString2Txt(string, target, targetPath = ""):
tempWD = os.getcwd()
if targetPath != "":
os.chdir(targetPath)
else:
development2Processed()
with open(target, "a", encoding='utf-8') as f:
f.write(string)
os.chdir(tempWD)
原文地址:https://www.cnblogs.com/zhulimin/p/15369438.html