Introduction Python Tutorial

logfile = open('mylog.txt', 'a')
print >> logfile, 'Fatal error: invalid input!'
logfile.close()