Pythonでランダムな文字列を作成するサンプル

コード下記

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)

Python

Posted by arkgame