Digital Marketing

Example to append to file in Python

import time
with open("test.txt", "a") as myfile:
myfile.write(str(time.time())+'\n')

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database