with open("open_file_name.txt") as f :

for line in f:

print line # TO DO Something


Line By Line 형태로 데이터를 읽어서 처리한다.

+ Recent posts