Download this file
1 2 3 4 5
def print_pers(strP, fileName): fileH = open(fileName, "a") print(strP) fileH.write(strP + "\n") fileH.close()