在用户找回密码功能里面, 需要生成随机字符串, 在python中其实很简单, 先定义一个字符串变量, 包含密码中你想生成随机字符串使用的所有字符.
list = 'abcdefghijklmnopqrstuvwxyz$&()#@'
import string, random
password = string.join(random.sample(list, 6), sep='')
user.set_password(password)
注意需要使用random和string模块, 前者是用来获取随机字符, 后者是把list转化为字符串形式.
posted on 2009-06-08 22:28
周锐 阅读(623)
评论(0) 编辑 收藏 所属分类:
Python