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()
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image