1、第一,print()输出到txt文档。运行下列代码,就可以把“Where there is a will, there is a way”输入到txt文档中。fi造婷用痃leone = open(r'D:\test.txt','a+')print('Where there is a will, there is a way',file=fileone)fileone.close()
2、第二,运行上述代码,在D盘中就会找到名为test的txt文档,“Where there is a will, there is a way”就输入到了该文档中。
3、第三,如果输出年份,这需要调用datetime模块。运行下列代码,可以将当前年份输出出来。坡纠课柩import dateti罪焐芡拂mefiletwo = open(r'D:\test.txt','a+')print('当前年份:'+str(datetime.datetime.now().year),file = filetwo)filetwo.close()
4、第四,保存和运行上述代码,当前年份就输出到了test.txt中。
5、第五,要想输入年月日和时分秒,只需要在上述代码的基础的增加如下代码:print('当前日期时间:'+datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'),file = filetwo)
6、第六,保存和运行上述代码,年月日时分秒就输出到了test.txt中。其中年月日%Y-%m-%d和时分秒%H:%M:%S的格式一定注意大小写奥,像这样才可以。