美文网首页
2018-02-07

2018-02-07

作者: ppying | 来源:发表于2018-02-07 19:12 被阅读0次

    Python文件操作
    打开文件并读取内容

    file1 = open(file='abc', encoding='utf8')
    contents = file1.read()
    print(contents)
    file1.close()
    
    file_name = 'pi'
    

    with open('pi', 'w', encoding='utf8') as file_object:
    file_object.write('hello word\n')
    file_object.write('hello word\n')
    file_object.write('hello word\n')

    相关文章

      网友评论

          本文标题:2018-02-07

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