728x90 CP9492 TypeError: an integer is required (got type str) 다음과 같은 에러가 뜰 때 해결법이다. File "test.py", line 5, in data = open('content.txt', 'r','utf8') TypeError: an integer is required (got type str) import time import pyperclip import pyautogui time.sleep(5) data = open('content.txt', 'r','utf8') lines = data.read() data.close() str_list = (list(lines)) print(str_list) 이러한 에러가 났다면 Python3 환경에서 다음과 같이 코드를 작성했을 것이다. Python 3으로 넘어오면서 utf8만 딸랑 써주면 안된다. encodin.. 2020. 8. 12. python txt read 파일 읽기 에러 'cp949 codec' 해결법 File "test.py", line 6, in lines = data.read() UnicodeDecodeError: 'cp949' codec can't decode byte 0xec in position 0: illegal multibyte sequence 다음과 같은 에러가 떴을 때 해결하는 방법은 두가지가 있다. 1번째 방법 파일을 읽을 때 설정에서 utf-8을 붙여준다. file = open( "text.txt", "r", "utf-8" ) 2번째 방법 txt 파일을 저장할 때 인코딩을 ANSI로 바꾸면 된다. 메모장에서 저장할 경우 다른 이름으로 저장을 누르면 ANSI 인코딩으로 바꿔줄 수 있다. 2020. 8. 12. 이전 1 다음 728x90