728x90
파일 다운로드 |
f=open('data.txt','r',encoding='utf-8') #r : read #w : write #a : append(이어쓰기) print("") print("파일명 :",f.name) print("---------------------------") print("**한번에 읽어오기**") print("") print(f.read()) #read 파일의 내용을 #모두 읽어오기 f.close() print("") print("---------------------------") f=open('data.txt','r',encoding='utf-8') print("**한 줄씩 읽어오기**") print("") print(f.readline()) print(f.readline()) print(f.readline()) #한 줄씩 읽어 오기 print("") print("*read와 달리 줄바꿈이 표현됩니다.") f.close() print("") print("---------------------------") f=open('data.txt','r',encoding='utf-8') print("**리스트로 읽어오기**") print("") print(f.readlines()) #리스트로 읽어 오기 print("") print("줄바꿈기호(역슬레시n)이 보임") f.close() |
파일 다운로드 |
f=open('data.txt','r',encoding='utf-8') for row in f : print(row) #한줄씩 읽어옴 f.close print("\n\n") print("--------strip 처리(깔금)") print("") f=open('data.txt','r',encoding='utf-8') for row in f : print(row.strip()) f.close |
728x90
'■ 현재-ing > ㅡPython' 카테고리의 다른 글
파이썬 max, min, 평균 (0) | 2020.07.07 |
---|---|
파이썬 텍스트 파일에 쓰기, 이어서 쓰기, w, a, write (0) | 2020.07.07 |
파이썬 window, command=quit, mainloop, 사진, messagebox, file (0) | 2020.07.06 |
파이썬 재귀함수, 재귀 호출, while (0) | 2020.07.06 |
파이썬 사용자정의함수 (0) | 2020.07.06 |