「Python パスワード生成」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成:「==Python パスワード生成== [Python] *http://www.oasob.com/blog/detail/9/ import string from random import choice print "".join([choice(string.ascii_lower…」) |
|||
| 1行目: | 1行目: | ||
==Python パスワード生成== | ==Python パスワード生成== | ||
| − | [Python] | + | [[Python]] |
*http://www.oasob.com/blog/detail/9/ | *http://www.oasob.com/blog/detail/9/ | ||
import string | import string | ||
2020年2月15日 (土) 08:05時点における版
Python パスワード生成
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)])
© 2006 矢木浩人