python的选择题_Python练习题
内置函数# 5.随意写一个20行以上的文件# 运行程序,先将内容读到内存中,用列表存储。# 接收用户输入页码,每页5条,仅输出当页的内容def user_check(filename,num=5):with open(file=filename,encoding='utf-8') as f:l=f.readlines()page_num,sy_page=divmod(len(l),num)ifsy...