欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python-小说翻页程序

程序员文章站 2022-03-17 12:44:27
...

用Python实现了小说自动翻页和手动翻页两种功能,很简单,学会逻辑循环和文件操作就可以尝试自行尝试了

import time
def read_book(path,line=3,auto=False):
    with open(path,mode='r') as f:
        f.seek(0,2)
        end=f.tell()  #读取文章最末尾的光标位置
        f.seek(0)
        if auto==True:
            while True:
                for i in range(line):
                    print(f.readline(),end='')
                now=f.tell()
                if now==end:
                    print('已读完')
                    break
                else:
                    time.sleep(3)
        else:
            while True:
                for g in range(line):
                    print(f.readline(), end='')
                now1=f.tell()
                if now1==end:
                    print('已读完')
                    break
                else:
                    num1=input('输入n翻下一页:')
                    if num1=='n':
                        continue
                    else:
                        print('输入错误,请重新输入')

read_book(r'D:\pycharm\day11\a.txt')

OK~

相关标签: Python入门