首页 > 编程语言 > 详细

Python作业

时间:2018-05-06 23:10:19      阅读:222      评论:0      收藏:0      [点我收藏+]
 1 #coding:utf8
 2 user_list =[]
 3 for i in range(1,302):
 4     tmp = "{‘user‘:‘alex-%s,‘email‘:‘alex%s@email.com‘,‘pwd‘:‘pwd%s‘}" %(i,i,i)
 5     user_list.append(tmp)
 6 while True:
 7     user_choice = input("请输入页码:").strip()
 8     if user_choice.isdecimal():
 9         user_choice = int(user_choice)
10         if user_choice >0 and user_choice <=len(user_list)/10+1:
11             min = user_choice * 10 -10
12             max = user_choice *10
13             for item in user_list[min:max]:
14                 print(item)
15         else:
16             print("你输入的页码不存在,最大只能为%d页。"%(len(user_list)/10 + 1))
17     else:
18         print("你输入的不是数字页面。。")

 

Python作业

原文:https://www.cnblogs.com/yspass/p/9000217.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!