Python2023. 9. 18. 09:00[Python] Original error was: DLL load failed while importing _multiarray_umath: 지정된 모듈을 찾을 수 없습니다.
Error Python3의 Anaconda3에서 Matplotlib을 사용시 아래와 같은 에러가 발생 상세내용 IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. We have compiled some common reasons and troubleshooting tips at: https://numpy.org/devdocs/user/troubleshooting-importerror..
Python2023. 9. 4. 09:00[Python] 파이썬 에러 - TypeError: expected string or bytes-like object
안녕하세요. 다뉴입니다 :) TypeError: expected string or bytes-like object 파이썬에서 정규식 사용시 위와 같은 에러가 발생하였습니다 # 문제의 코드 p1 = re.compile('[0-9]:[0-5][0-9]') m1 = p1.match(self.ws_list[i][j]) 해당 정규식을 String Type 으로 강제 변경하여 적용하여 에러 발생을 해결 하였습니다. # 문제 해결 코드 p1 = re.compile('[0-9]:[0-5][0-9]') m1 = p1.match(str(self.ws_list[i][j]))