本节主要内容:
学习python随机生成字符串的方法。
例子,生成随机密码字符串,引用了base64包,对字符做了base64编码。
代码:
#!
#
#site: www.jb200.com
import os, math
from base64 import b64encode
randStr = lambda n: b64encode(os.urandom(int(math.ceil(0.75*n))),'-_')[:n]
for x in xrange(5):
print randStr(10)
输出结果: