14python open with 读写文件

2021/6/19 20:57:30

本文主要是介绍14python open with 读写文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

读写文档,Python引入了with语句,自动调用close(),方法:with open(’/path/to/file’, ‘r’) as f,
并使用utf-8编码,encoding = ‘utf-8’,

# __author__ = 'lzc'
# -*- coding: UTF-8 -*-

def readfile(srcpath):
    with open(srcpath,'r',encoding = 'utf-8',) as f:
        for line in f.readlines():
            print(line.strip('\n'))


if __name__=="__main__":
    readfile("example.txt")


这篇关于14python open with 读写文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程