美文网首页测试Inbox
python文件处理

python文件处理

作者: 五娃儿 | 来源:发表于2017-03-20 18:30 被阅读18次

    以写模式方式打开文件

    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()

    相关文章

      网友评论

        本文标题:python文件处理

        本文链接:https://www.haomeiwen.com/subject/tosinttx.html