Created
November 24, 2011 06:18
-
-
Save node/1390745 to your computer and use it in GitHub Desktop.
Python snippets - Python代码片段
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 通过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