write writelines python code example
Example: python writelines
f = open("demofile3.txt", "a")
f.writelines(["See you soon!", "Over and out."])
f.close()
f = open("demofile3.txt", "a")
f.writelines(["See you soon!", "Over and out."])
f.close()