検索
プロフィール
リサイクル夏夏さんの画像
リサイクル夏夏
仕事一筋の人生もいいけれど、趣味がたくさんある人生も素敵だよね。

私が見た動画紹介コーナー

イントロが素敵です

リンク集
<< 2024年06月 >>
1
2 3 4 5 6 7 8
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
カテゴリアーカイブ
写真ギャラリー
最新コメント

広告

posted by fanblog

2013年06月17日

python備忘録4(パスワード作成)

10桁のパスワードを10個作成し、
テキストファイルに書き出しするプログラムが完成です(*^?^)
 import 
 random 

data=[ '1' , '!' , '2' , '"' , '3' , '#' , '4' , '$' , '5' , '%' , '6' , '&' , '7' , '8' , \
'(' , '9' , ')' , '0' , '~' , '-' , '=' , '^' , '~' , '|' , 'q' , 'Q' , 'w' , 'W' , 'e' , \
'E' , 'r' , 'R' , 't' , 'T' , 'y' , 'Y' , 'u' , 'U' , 'i' , 'I' , 'o' , 'O' , 'p' , 'P' , \
'@' , '`' , '[' , '{' , 'a' , 'A' , 's' , 'S' , 'd' , 'D' , 'f' , 'F' , 'g' , 'G' , 'h' , \
'H' , 'j' , 'J' , 'k' , 'K' , 'l' , 'L' , ';' , '+' , ':' , '*' , ']' , '}' , 'z' , 'Z' , \
'x' , 'X' , 'c' , 'C' , 'v' , 'V' , 'b' , 'B' , 'n' , 'm' , 'M' , ',' , '.' , '>' , '/' , '?' , '_' ]

Key_word= 0

test_file= open ( "key.txt" , "w" )

for i in range ( 10 ):
Key_word=random.choice(data)+random.choice(data)+random.choice(data)+ \
random.choice(data)+random.choice(data)+random.choice(data)+random.choice(data)+random.choice(data)

test_file.write(Key_word+ "\n" )

test_file.flush()
test_file.close()

posted by リサイクル夏夏 at 12:15| python
Build a Mobile Site
スマートフォン版を閲覧 | PC版を閲覧
Share by: