파이썬 에러 썸네일형 리스트형 Python3 Error : TypeError: 'newline' is an invalid keyword argument for this function 대학원 강의를 듣던 도중 이러한 에러를 마주치게 되었다. Traceback (most recent call last): File "chap01_161.py", line 8, in with open(input_file, 'r', newline='') as filereader:TypeError: 'newline' is an invalid keyword argument for this function 코드는 그저 txt 확장자로 되어있는 파일을 읽어와서 출력하는 내용밖에 없었다. 소스코드 내용 import sys import os import glob inputPath = sys.argv[1] for input_file in glob.glob(os.path.join(inputPath, "*.txt")): wi.. 더보기 이전 1 다음