Python30 pip install error - after connection broken by 'ProxyError pip install 오류 C:\Users\user>pip install scipy WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('_ssl.c:1105: The handshake operation timed out'))': /simple/scipy/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'Prox.. 2021. 1. 20. Python - 람다표현식 이해와 예제 ( Understanding Lambda expression ) 람다표현식 ( Lambda expression ) 람다함수는 "익명(Annoymous)함수"라고 표현합니다. 말그대로 이름이 없는 함수를 뜻합니다. 간결하고 직관적인 코드로 가독성이 좋아집니다. 특히 map, reduce, filter 함수와 함께 많이 사용됩니다. 함수를 정의하지 않고 익명함수로 대체 하여 간결한 코드를 작성할 수 있습니다. lambda 키워드를 사용하여 람다함수를 사용합니다. lambda 이해 >>> fruits = ['banana', 'apple', 'melon'] 위 과일 리스트를 모두 대문자로 치환하는 로직을 구현해봅니다. 1. for 를 이용한 방식 >>> result = [x.upper() for x in fruits] >>> result ['BANANA', 'APPLE', .. 2021. 1. 19. RuntimeError: The current Numpy installation fails to pass a sanity check due to a bug in the windows runtime. Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec 7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. >>> import matplotlib.pyplot as plt Traceback (most recent call last): File "", line 1, in import matplotlib.pyplot as plt File "C:\Python\Python39\lib\site-packages\matplotlib\__init__.py", line 107, in from . import cbook, rcsetu.. 2020. 12. 20. Python - XML 파싱 오류 해결 ( xml.etree.ElementTree.ParseError ) xml 파싱 오류 해결 ( with BeautifulSoup ) xml 파일을 파싱하기 위해 xml.etree 를 사용했다. from os import listdir from shutil import copyfile import xml.etree.ElementTree as ET ..중략.. def copy_js_file(done_list): for file in done_list: _parser = ET.XMLParser(encoding="utf-8") _file = ET.parse(file, _parser) 파싱 대상 파일은 단순한 xml이 아닌 RIA 기반의 웹XML 파일이다. 위 코드 실행시 아래와 같은 오류가 발생했다. xml.etree.ElementTree.ParseError: not well-.. 2020. 12. 7. 이전 1 ··· 3 4 5 6 7 8 다음