上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: import random def v_code(): code = '' for i in range(5): num = random.randint(0,9) alf = chr(random.randint(65,122)) add = random.choice([num,alf]) ... 阅读全文
posted @ 2016-12-13 10:06 打不死的--蟑螂 阅读(106) 评论(0) 推荐(0) 编辑
摘要: count = 0 while count >>') pwd = input('请输入密码>>>') if user == 'huang' and pwd == '123': print('欢迎进入黑客帝国')1 print('...................') break else: print('... 阅读全文
posted @ 2016-12-10 10:27 打不死的--蟑螂 阅读(120) 评论(0) 推荐(0) 编辑
摘要: n = 1 sum = 0 while n < 100: temp = n % 2 if temp == 0: sum = sum - n else: sum = sum + n n = n + 1 print(sum) 阅读全文
posted @ 2016-12-10 09:02 打不死的--蟑螂 阅读(526) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python # coding utf-8 name = '?' if name == 'python': print('欢迎BOSS') else: print('输入错误') 阅读全文
posted @ 2016-12-09 16:53 打不死的--蟑螂 阅读(405) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python # coding utf-8 dic={ '123':'一等奖', '345':'二等奖', '678':'三等奖', '789':'四等奖', } msg1=input('请选择彩票号码: ') # # print(msg1) # print(type(msg1)) if msg1 not in dic: print... 阅读全文
posted @ 2016-12-09 16:51 打不死的--蟑螂 阅读(86) 评论(0) 推荐(0) 编辑
摘要: # 求出1-100全部奇数。 n = 1 while n >>>>>>>end>>>>>>>') 阅读全文
posted @ 2016-12-09 16:48 打不死的--蟑螂 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 求出1-100全部偶数。 n = 1 while n >>>>>>>end>>>>>>>') 阅读全文
posted @ 2016-12-09 16:46 打不死的--蟑螂 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 运行结果: 请输入用户huang请输入密码123恭喜你登录成功! 阅读全文
posted @ 2016-12-08 18:30 打不死的--蟑螂 阅读(71) 评论(0) 推荐(0) 编辑
摘要: #这就是一个实现一个装饰器最基本的架子#无参装饰器=高级函数+函数嵌套def time(func): def wrapper(): func() return wrapper#加上参数 def time(func): def wrapper(*args,**kwargs): func(*args,* 阅读全文
posted @ 2016-12-08 15:39 打不死的--蟑螂 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 我父亲是[美丽]我爷爷是[快乐] 阅读全文
posted @ 2016-12-08 14:19 打不死的--蟑螂 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页