f=open("C:\Windows\System32\drivers\etc\hosts") #파일 객체 생성
f2=open("out.log","w")
line=f.readline() #파일 read
while line:
print line, # ,는 줄바꿈 생략
#print(line,end='') #파이썬3
print >>f2,line # f2에 line 내용 출력
#print(line,file=f2) #파이썬3
line=f.readline()
f.close()
for line2 in open("C:\Windows\System32\drivers\etc\hosts_tmp"):
print line2,
반응형
'프로그래밍 기초 > Python' 카테고리의 다른 글
[Python] 예외처리 (0) | 2016.03.08 |
---|---|
[Python] 생성기 (0) | 2016.03.08 |
[Python] 함수 (0) | 2016.03.02 |
[Python] 튜플 (생성 후 데이터 추가/변경/삭제 불가) (0) | 2016.03.02 |
[Python] 집합 (데이터 순서 없음, 중복값 없음) (0) | 2016.03.02 |