码迷,mamicode.com
首页 > 编程语言 > 详细

python之分页显示内容

时间:2020-01-22 20:09:43      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:microsoft   username   start   显示   input   append   int   name   family   

要求:分页显示101条数据,每页仅显示10条数据

user_data=[]

for i in range(1,102):

        dic={‘username‘:‘Lucy‘+str(i),‘email‘:‘lucy‘+str(i)+‘@163.com‘,‘passwd‘:‘cmd‘+str(i)}

        user_data.append(dic)

# 每页仅显示10条数据

# 第一页:从0-10      1页

# 第二页:从10-20    2页

# 第三页:从20-30    3页

# ............................................

 

 

while True:

        s=input("请输入页码:")

        s=int(s)

 

        start=(s-1)*10

        end=s*10

 

        for item in user_data[start:end]:

                 print(item,type(item))

        

python之分页显示内容

标签:microsoft   username   start   显示   input   append   int   name   family   

原文地址:https://www.cnblogs.com/cxydnxs/p/12229131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!