Skip to content

Instantly share code, notes, and snippets.

@node
Created November 24, 2011 06:18
Show Gist options
  • Save node/1390745 to your computer and use it in GitHub Desktop.
Save node/1390745 to your computer and use it in GitHub Desktop.
Python snippets - Python代码片段
## 通过URL下载图片
import urllib2
open('/tmp/google-logo.gif','wb').write(urllib2.urlopen('http://www.google.com/images/logo_sm.gif').read())
## python profile : cProfile
python -m cProfile xxx.py
python -m timeit xxx.py | python -m timeit -s "code here"
## 计算 sum([1,2,...,100])
s =sum(crange(101)) | s = (1+100)*100/2 #算法的力量
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment