Programming/Python15 python packages 비공식 바이너리 Unofficial Windows Binaries for Python Extension Packages http://www.lfd.uci.edu/~gohlke/pythonlibs/ 2014. 8. 26. python Advanced topics 2. Advanced topicsThis part of the Scipy lecture notes is dedicated to advanced usage. It strives to educate the proficient Python coder to be an expert and tackles various specific topics.2.1. Advanced Python Constructs2.1.1. Iterators, generator expressions and generators2.1.2. Decorators2.1.3. Context managers2.2. Advanced Numpy2.2.1. Life of ndarray2.2.2. Universal functions2.2.3. Interopera.. 2014. 6. 16. python - 입출력 문자열 색변경 from sys import platform from random import randint if platform.startswith('win'): from colorama import init init() colorList = { 'white': "\x1b[39m", 'yellow': "\x1b[33m", 'green': "\x1b[32m", 'blue': "\x1b[34m", 'cyan': "\x1b[36m", 'red': "\x1b[31m", 'magenta': "\x1b[35m", 'black': "\x1b[2m", 'darkwhite': "\x1b[37m", 'darkyellow': "\x1b[33m", 'darkgreen': "\x1b[32m", 'darkblue': "\x1b[34m", 'd.. 2014. 3. 31. python - decorator Blog :: Understanding Python Decorators in 12 Easy Steps! Ok, perhaps I jest. As a Python instructor, understanding decorators is a topic I find students consistently struggle with upon first exposure. That’s because decorators are hard to understand! Getting decorators requires understanding several functional programming concepts as well as feeling comfortable with some unique features of Pyth.. 2014. 3. 25. 이전 1 2 3 4 다음