file write ][ 랜덤하게 파일을 생성해서 임의 데이터 쓰기
file write ][ 랜덤하게 파일을 생성해서 임의 데이터 쓰기 import random data = "00000000" ascii_str1 = ['a', 'b', 'c', 'd', 'e' , 'f' , 'g' ,'h' , 'i' , 'j' ,'k', 'l' ,'m' ,'n' ] ascii_str2 = ['o', 'p', 'q', 'r', 's' , 't' , 'u' ,'v' , 'w' , 'x' ,'y', 'z' ] for t in range(1,100000000): rand_str1 = random.choice(ascii_str1) rand_str2 = random.choice(ascii_str2) filename = "d:\\test" + rand_str1 + rand_str2 + "%d.txt..
2016. 8. 8.