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)