摘要: user_list=[{'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex',&# 阅读全文
posted @ 2017-01-06 19:06 打不死的--蟑螂 阅读(144) 评论(0) 推荐(0) 编辑
摘要: #随机验证码 import random def v_code(): code='' for i in range(5): num = random.randint(0,9) alf =chr(random.randint(65,90)) add = random.choice([num,alf]) code+=st... 阅读全文
posted @ 2017-01-06 19:04 打不死的--蟑螂 阅读(155) 评论(0) 推荐(0) 编辑
摘要: # import time,sys 导入time,sys模块 # for i in range(10):遍历是个字符 # sys.stdout.write('#') 打印字符 # time.sleep(0.1) 睡0.1秒 # sys.stdout.flush() 刷新打印字符 阅读全文
posted @ 2017-01-06 19:03 打不死的--蟑螂 阅读(538) 评论(0) 推荐(0) 编辑