Python3 操作文件读写open()

Python3小白日记

python3 使用open() 操作文件读写。

系统:Python 3.6.5 + windows7 + 自带time/datetime库

嗯。小案例,执行结果写到指定文件。

注意windows下,\\表示路径。Linux下./xxx/xx/xx

str(int(time.mktime(Array)))   这里time函数返回时float型,值是000.0必须,用int去0,在转化str

file_name 必须是全字符串形式拼接,就是说要么str(),要么'xxxx' 。

#coding:UTF-8
import time
import datetime

#生成测试报告
def create_report(value):
    # 生成存放路径
    filePath = 'C:\\Users\\MBJ\\Documents\\StudyAutoTest\\Selenium\\ROOT\\Report\\'

    # 生成文件时间
    nowTime = datetime.datetime.now().strftime('%Y%m%d%H%M')
    timeArray = time.strptime(nowTime, "%Y%m%d%H%M")
    timestamp = str(int(time.mktime(timeArray)))

    # 生成文件名
    file_name = filePath + nowTime + '_' + timestamp + '_5min_report.txt'
    
    #增加encoding='utf-8'保证写入文件不会乱码。 
    f = open(file_name, 'a',encoding='utf-8')
    #value+'\n'可以让同一个脚本多次调用写入点,换行写。
    f.write(value+'\n')

你可能感兴趣的:(python3)