美文网首页
(技术)Python 读文件 与 写文件

(技术)Python 读文件 与 写文件

作者: 点映文艺 | 来源:发表于2017-11-23 12:25 被阅读0次

    读文件

    
    def writeTextFile():
       try:
           content = 'Hello,xk,啊啊啊'
           content.encode('UTF-8')
           f = open('E:\\test.txt','w') # w 代表读
           f.write(content)
       except BaseException as e:
           print(e)
       finally:
           if f:
               f.close()
    
    # 调用:
    if __name__ == '__main__':
       writeTextFile()
    
    

    读文件:

    
    def readFile():
        try:
            f = open('E:\\test.txt','r') # r 代表读
            # print(f.read())    #  read()会⼀次性读取⽂件的全部内容
            print(f.readlines())  # 每次读取⼀⾏内容,返回list
        except BaseException as e:
            print(e)
        finally:
            if f :
                f.close()
    
    # 调用:
    if __name__ == '__main__':
        readFile()
    
    

    相关文章

      网友评论

          本文标题:(技术)Python 读文件 与 写文件

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