반응형
def read_4(filename):
with open(filename, 'r', encoding='utf-8')as f:
for line in f:
print(line.strip())
filename = 'Data/Poem.txt'
read_4(filename)
'Python' 카테고리의 다른 글
(Python) - 입출력 시간초과 해결법 (0) | 2021.01.22 |
---|---|
(Python 오류) - TypeError : list indices must be integers or slices, not float (2) | 2019.03.27 |
파이썬(python)-백준(baekjoon)(BaekJoon)코딩 10430번:나머지 답 (0) | 2016.10.04 |
print(i , end = ' ')가 안될 때 (0) | 2016.10.01 |
SyntaxError: Non-ASCII character...py on line 1, but no encoding declared (0) | 2016.10.01 |