编程语言
首页 > 编程语言> > python---文件的使用 读取 例题

python---文件的使用 读取 例题

作者:互联网

1.read的读取

with open('1_qinshi.txt',encoding='utf-8') as ef:

    while True:

        if not ef.read(25):

            break

        print(ef.read(25),end='')

2. readlines的用法 是一个列表

with open('1_qinshi.txt',encoding='utf-8') as ef:

    ef=ef.readlines()

    for i in ef:

        print(i,end='')

#strip(”123”) 头尾的空格 以及123都要去掉

#rstrip 尾部的空格

#seek(9,0) 从0开始

标签:txt,encoding,python,ef,readlines,---,read,例题,open
来源: https://blog.csdn.net/qq_45072087/article/details/120161003