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开始

上一篇:springboot 2.4.5使用记录


下一篇:Redis核心原理与实践--字符串实现原理