摘要:
user_list=[{'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex','passwd':'123'}, {'name':'alex', 阅读全文
摘要:
#随机验证码 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... 阅读全文
摘要:
# import time,sys 导入time,sys模块 # for i in range(10):遍历是个字符 # sys.stdout.write('#') 打印字符 # time.sleep(0.1) 睡0.1秒 # sys.stdout.flush() 刷新打印字符 阅读全文