295 バイト追加
、 2020年2月15日 (土) 07:35
==Python パスワード生成==
[Python]
*http://www.oasob.com/blog/detail/9/
import string
from random import choice
print "".join([choice(string.ascii_lowercase + string.ascii_uppercase.replace('I','').replace('O','') + string.digits.replace('0','').replace('1','')) for i in range(12)])