본문 바로가기

개발/Python3

Python의 arctan, arctan2 차이 출처: https://simmmmmk.tistory.com/42 Python의 arctan, arctan2 차이가 뭔지 궁금해서 구글링 해보니 출처에 잘 나와있네요. numpy.arctan(x1, x2) arc tangent of x1/x2. 출력 범위가 [-pi/2, pi/2] 180도 이상 차이나는 각의 arctan 값은 구분이 안됨(ex: arctan(0), arctan(180) 은 같음). numpy.arctan2(x1, x2) arc tangent of x1/x2. 출력 범위가 [-pi, pi] C언어 atan2 함수와 같음. 2020. 9. 13.
Python에서 상속시 Super Class의 멤버 변수가 보이지 않는 경우 출처: https://stackoverflow.com/questions/10064688/cant-access-parent-member-variable-in-python https://www.codecademy.com/en/forum_questions/560afacd86f552c8a70001dd Python에서 Class를 상속해서 쓰면서 super class의 멤버 변수와 메소드를 사용하려고 했는데, child class의 __init__ 메소드에서 정의한 멤버 변수만 보이고 super class의 정보가 하나도 보이지 않는 문제가 발생하였습니다. https://wikidocs.net/16073 에 나와있는 대로 보면 그냥 상속해서 쓰면 되는 것처럼 보이는데, 실상은 그게 아니더군요. https://wi.. 2019. 4. 10.
Python Version 2.7 required... 대처 방법 출처: http://stackoverflow.com/questions/3652625/installing-setuptools-on-64-bit-windows TortoiseSVN을 깔고 좀 더 상세한 변경 기록을 남기고 싶어서 bug tracker와의 연동을 고려해보았습니다. 먼저 MantisBT를 선택해서 IIS 7.5 + MySQL+PHP로 진행을 하려고 했는데 APMSetup에서 제공하는 패키지는 64bit를 지원하지 않는다고 해서 포기하고 Trac으로 전향하였습니다. Trac을 설치하기 전에 Python/MySQL을 설치하고 MySQLdb를 설치하려고 하니 `Python Version 2.7 required which was not found in the registry` 라는 에러 메시지가 나오면.. 2013. 2. 22.