본문 바로가기
Python

[python] 텍스트(txt) 파일 읽고 쓰기

by inspireman 2021. 4. 4.
728x90

|파이썬 텍스트 파일 읽기/쓰기|


  • 텍스트 파일 읽기 
tickers = []

with open('coin_list.txt', mode='r') as f:    
    while True:
        coin = f.readline().strip()
        if coin:
            tickers.append(coin)
        else:
            break

# coin_list 텍스트 파일 읽기 한 후 한줄씩 읽어서 tickers에 집어 넣기

 

  • 텍스트 파일 쓰기 
import os

try:
    txt_file = open('test_write.txt', 'w', encoding='utf-8')
    write_words = ['문자를 텍스트 파일에\n', '쓰고 있습니다.\n', '쓰기 완료']
    
    txt_file.write('한줄 쓰기\n')
    txt_file.writelines(write_words)
    
    txt_file.close()
except:
	print("파일 열기에 실패 하였습니다.")
  • 한글문자도 읽거나 쓰고 싶을 때  추가 (encoding = ' utf-8')

 

728x90
반응형

댓글