Programming/Python5 python에서 숫자에 콤마를 넣어서 출력하기 >>> import locale >>> locale.setlocale(locale.LC_ALL, 'en_US') 'en_US' >>> locale.format("%d", 1255000, grouping=True) '1,255,000' 2011. 3. 23. Django-pagination in an ajax div http://bcurtu.com/?p=478 2010. 2. 17. python email scrape email_pattern = re.compile("[-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+.[a-zA-Z0-9_.]+") self.emails = re.findall(email_pattern, htmlSource) 2010. 1. 19. Command-line tab completion in standard Python shell To enable 'tab-completion' on the command line of the default Python shell, put this in ~/.pythonrc, and setup the PYTHONSTARTUP environment variable to point to it: export PYTHONSTARTUP=~/.pythonrc # ~/.pythonrc # enable syntax completion try: import readline except ImportError: print "Module readline not available." else: import rlcompleter readline.parse_and_bind("tab: complete") It needs the.. 2009. 8. 6. django tutorial http://toys.jacobian.org/presentations/2007/pycon/tutorials/beginning/ 2008. 4. 30. 이전 1 다음