python中print内容打印到文件中
import sys
file = open("502log.txt", 'a')
sys.stdout = file
print(time.asctime(),"开始请求。。。。。")
file.close()
这里将print的内容写到文件中,这只是其中一种,可以有多少方式,后面再记录下
标签:文件,python,打印,sys,file,print From: https://www.cnblogs.com/aiverhua/p/16666423.html