以写模式方式打开文件
1、打开一个文件,默认为'R'模式,如果想要写文件,则需要open(‘文件名’,‘W’)
print(‘this is my content’,file= 文件名)
关闭文件 文件名.close()
2、为了保证文件最终被关闭,则需要使用finally,确保最后的操作
finally:
语句
现在更多的是使用with codecs.open(reportPath, 'r', encode) as f:
或者:
encode='utf-8'
if (platform.platform()).startswith('Linux'):
encode='utf-8'
elif (platform.platform()).startswith('Windows'):
encode='cp936'
with codecs.open('../../testReport.txt','r',encode) as f:
testcase=f.readlines()