User Tools

Site Tools


python

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
python [2009/11/13 04:41] suapapapython [2013/08/03 05:04] (current) – external edit 127.0.0.1
Line 13: Line 13:
  
 </code> </code>
 +====== 한줄 로또 ====== 
 +<code python> 
 +>>> import random 
 +>>> (lambda a:random.shuffle(a) or a[:6])(range(1, 46)) 
 +</code>
 ====== 찾으면 없는 라이브러리들 ====== ====== 찾으면 없는 라이브러리들 ======
   *[[http://snippets.dzone.com/posts/show/6944|UnixColorStyler]]   *[[http://snippets.dzone.com/posts/show/6944|UnixColorStyler]]
 +  *[[http://jeetworks.org/node/43|Python Code Snippet to Get External IP Address]]
 +<code txt>
 +socket.gethostbyname(socket.getfqdn()) 
 +socket.gethostbyname_ex(socket.gethostname())[2]
 +</code>
 +  *[[http://stackoverflow.com/questions/207234/list-of-ip-addresses-hostnames-from-local-network-in-python|list-of-ip-addresses-hostnames-from-local-network-in-python]]
 +  *[[http://alastairs-place.net/netifaces/|netifaces]]
 +<code bash>
 +sudo apt-get install python-netifaces
 +
 +</code>
  
 ====== references ====== ====== references ======
   *[[http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/|Python HTML Parser Performance]] 마크업언어 파싱   *[[http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/|Python HTML Parser Performance]] 마크업언어 파싱
   *[[http://simonwillison.net/2008/Jan/8/daemon/|daemon.py]], [[http://www.python.org/dev/peps/pep-3143/|PEP3143]] 데몬   *[[http://simonwillison.net/2008/Jan/8/daemon/|daemon.py]], [[http://www.python.org/dev/peps/pep-3143/|PEP3143]] 데몬
python.1258087272.txt.gz · Last modified: 2013/08/03 05:04 (external edit)