파일 생성하는 방법

strFilePathName = 'D:\\Test.txt'
f = open(strFilePathName, 'w')
f.close()

 

파일을 쓰기모드로 열어 출력값 적기

strFilePathName = 'D:\\Test.txt'

f = open(strFilePathName, "w")

for i in range(1, 101):
strData = '%d번째 데이터입니다\n' % i
f.write(strData)
f.close()

 

프로그램의 외부에 저장된 파일을 읽는 여러가지 방법

① readline() 함수를 이용하는 방법 (첫번째줄이 화면에 출력되는 경우)

strFilePathName = 'D:\\Test.txt'

f = open(strFilePathName, "r")

 

line = f.readline()
print(line)
f.close()

 

 

② readline()함수를 이용하는 방법( 전체줄이 화면에 출력되는 경우)

strFilePathName = 'D:\\Test.txt'

f = open(strFilePathName, "r")

 

while True:
line = f.readline()
if not line: break
print(line)
f.close()

 

③ readlines()함수를 이용하는 방법

strFilePathName = 'D:\\Test.txt'


f = open(strFilePathName, "r")

 

lines = f.readlines()
for line in lines:
print(line)

f.close()

 

④ read 함수 사용하기

strFilePathName = 'D:\\Test.txt'

f = open(strFilePathName, "r")

data = f.read()
print(data)
f.close()

 

 

 

'프로그래밍 > PYTHON' 카테고리의 다른 글

딕셔너리(Dictionary)의 개념  (0) 2019.12.05
파이썬에서 OpenCV를 사용하는 방법  (0) 2019.12.05
*.ui 파일을 .py파일로 변환  (0) 2019.12.05
파이썬 강좌  (0) 2019.12.05
파이썬에서 GUI 프로그램 하기  (0) 2019.12.04
블로그 이미지

cocoa9518

,