- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Python (63)
민서네집
Our Python IDE's powerful debugger and intelligent editor work together to make interactive Python development fast, accurate, and fun.Write code fasterFind and fix bugs quicklyNavigate code with easeEdit with your favorite key bindingsCustomize your workspace http://wingware.com/ Wing IDE starts quickly and runs fast on Windows, Linux, and OS X, and works with Python versions 2.x and 3.x and St..
[출처] http://blog.eairship.kr/286 Python 의 경우 다중상속이 가능하고, 부모 클래스(Base Class)를 나열하는 순서에 따라 부모 클래스의 변수나 메서드를 찾는다고 한다. [일부 발췌] >>> class ParentOne: def func(self): print("ParentOne의 함수 호출!") >>> class ParentTwo: def func(self): print("ParentTwo의 함수 호출!") >>> class Child(ParentOne, ParentTwo): def childFunc(self): ParentOne.func(self) ParentTwo.func(self) >>> objectChild = Child() >>> objectChild.chi..
What is the difference between __str__ and __repr__ in Python http://www.pythoncentral.io/what-is-the-difference-between-__str__-and-__repr__-in-python/ Confused about __str__ in Python http://stackoverflow.com/questions/12448175/confused-about-str-in-python
The meaning of a single- and a double-underscore before an object name in Python http://stackoverflow.com/questions/1301346/the-meaning-of-a-single-and-a-double-underscore-before-an-object-name-in-python Private Variables and Methods in Python [duplicate]http://stackoverflow.com/questions/3385317/private-variables-and-methods-in-python
Mini-project description - RiceRocks (Asteroids)[설명]https://class.coursera.org/interactivepython-005/human_grading/view/courses/972530/assessments/35/submissions [Program Template]http://www.codeskulptor.org/#examples-ricerocks_template.py http://www.codeskulptor.org/#user38_eKaxKkEsgR_5.py
파라미터로 function 정의해서 넘기기 ☞ lambda Function을 이용하면 된다. 4.7. Using lambda Functions http://www.diveintopython.net/power_of_introspection/lambda_functions.html a = 10 def calc(func): print (func()) def calc_plus(): return a+b b = 5 #calc(calc_plus) calc(lambda : a+b) Is it possible to have multiple statements in a python lambda expression?http://stackoverflow.com/questions/862412/is-it-possible-to-ha..
단순함이 장점인 파이썬, “3.x 업그레이드 어렵다”http://www.itworld.co.kr/news/81010 "모래 속 진주"와 같은 10가지 파이썬 라이브러리http://www.itworld.co.kr/slideshow/89928
https://class.coursera.org/interactivepython-005/lecture https://class.coursera.org/interactivepython-005/lecture/3 [Introduction] 00:30 ~ rock, paper, scissors, lizard, Spock, shoot ~ 07:30 ~ 프로젝트로 뭘 개발할 것인가? Week 1b - Logic and conditionals Week1 concepts https://class.coursera.org/interactivepython-005/wiki/view?page=week1 http://www.codeskulptor.org/#examples-conditionals.py http://www.codes..
python 에서 하위 디렉터리까지 한꺼번에 삭제를 하기 위한 스크립트. shutil.rmtree() 메서드를 호출할 때, ignore_errors=True 로 하면 파일이 사용 중이라서 삭제를 못했을 때도 에러 메시지가 표시가 되지 않으므로 주의할 것. remove_readonly()를 만든 이유는 shutil.rmtree()를 호출 시 읽기 전용 폴더 속성이면 지워지면서도 에러 메시지를 출력하기 때문에, 에러 메시지를 안 나오게 하기 위해 속성을 쓰기 속성으로 바꿔주는 것이다. # remove_dir.py # # Directory Tree 삭제하기 import os import stat import shutil # [출처] http://stackoverflow.com/questions/2656322/..
Maven Repository 안에 있는 .pom 파일과 .jar 파일은 파일 내용이 정확한지 확인할 수 있는 sha1 파일이 같이 제공된다. 따라서 Python으로 Maven Repository 안에 있는 pom 파일과 jar 파일의 sha1 해쉬값을 구해서 .sha1 파일의 값과 비교해보는 Script를 만들었다. [사용법] 1. 이 파일을 maven repository directory 에 놓는다. ex) C:\Users\{User Name}\.m2 2. 명령 프롬프트 창에서 python 으로 이 스크립트를 실행시킨다. ex) python maven_repo_check.py 3. Result File: ERROR_LOG_FILE.log [이 스크립트가 하는 일] 1. 이 스크립트가 실행되는 하위 디..