码迷,mamicode.com
首页 >  
搜索关键字:python md5 sha1 文件校验    ( 139320个结果
Euler_problem_18 for python
如下所示 给出2个解法 def euler_problem_18_1():     """     this problem spend my half-day but noting to finished ,so bad     """     rows = '''     3     7 4     2 4 6     100 5 9 3     '''     ...
分类:编程语言   时间:2014-06-07 01:28:18    阅读次数:261
projecteuler---->problem=5----Smallest multiple n个数求最小公倍数
title: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the nu...
分类:其他好文   时间:2014-06-07 01:27:37    阅读次数:229
projecteuler---->problem=4----Largest palindrome product
title: Largest palindrome product Problem 4 A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 99. Find the l...
分类:其他好文   时间:2014-06-07 01:24:27    阅读次数:398
projecteuler---->problem=6----Sum square difference
title: The sum of the squares of the first ten natural numbers is, 12 + 22 + ... + 102 = 385 The square of the sum of the first ten natural numbers is, (1 + 2 + ... + 10)2 = 552 = 3025 Hence ...
分类:其他好文   时间:2014-06-05 12:03:29    阅读次数:243
Ubuntu 安装 spark
环境: Unbunt 12.04 Hadoop 2.2.x Sprak 0.9 Scala scala-2.9.0.final.tgz 步骤 1. 下载 scala 2. 解压scala,然后修改/etc/profile,添加如下 export SCALA_HOME=/home/software/scala-2.9.0.final export PATH=$P...
分类:其他好文   时间:2014-06-05 11:52:46    阅读次数:484
python try except else finally 执行顺序详细分析
python try except else finally 执行顺序详细分析...
分类:编程语言   时间:2014-06-05 11:43:56    阅读次数:305
python 装饰器与AOP
无高见 1.缓存 from functools import wraps lineseq = '==' * 20 def memo( func ): cache = {} @wraps( func ) def wrapper( *args ): result = cache.get( args ) if resul...
分类:编程语言   时间:2014-06-05 11:07:06    阅读次数:324
python中多线程调度机制以及GIL
总结下python中线程调度机制. 对于线程调度机制而言,同操作系统的进程调度一样,最关键是要解决两个问题: 1.在何时选择挂起当前线程,并选择处于等待的先一个线程呢? 2.在众多等待的线程中,选择哪一个作为激活线程呢? 在python多线程机制中,这个两个问题是有两个层次解决的。 如,进程间的切换,当发生了时钟中断,操作系统响应时钟中断,并在这个时候开始进程的调...
分类:编程语言   时间:2014-06-05 10:07:35    阅读次数:314
Python打包成exe
有个好网站http://www.lfd.uci.edu/~gohlke/pythonlibs/ , 这个网站可以下载许多非官方的python库的安装包。 1.首先去这个网站下载cx_freeze安装包后安装。 2.在C:\PythonXX\Scripts\ 下可以看到cxfreeze-quickstart.bat, XX为版本号 3.运行cxfreeze-quickstart.bat...
分类:编程语言   时间:2014-06-05 06:24:55    阅读次数:350
Python:file/file-like对象方法详解【单个文件读写】
IO中读写文件操作方法(file-like对象)汇总!----The_Third_Wave的学习笔记!...
分类:编程语言   时间:2014-06-05 01:05:48    阅读次数:612
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!