C++,python,热爱算法和机器学习
全部博文(1214)
发布时间:2015-01-02 16:28:07
C语言需要掌握上千个编程技巧,才能有一些编程思路去写一些程序;而python只要上百个编程技巧就能写很多程序了。比如获取[-80, 20]之间的随机数:Python:import random; random.randrange(-80, 20)C:点击(此处)折叠或打开#include #include.........【阅读全文】
发布时间:2015-01-01 23:12:06
stackless python的机制看上去有点像golang原文地址:http://www.cnblogs.com/sevenyuan/archive/2010/12/08/1900386.htmlhttp://www.elias.cn/Python/PyConcurrency1.? 前言偶然看到Erlang vs. Stackless python: a first benchmark,对Erlang和Stackless Python的并发处理性能进行了实验比较,基本结论认为二者.........【阅读全文】
发布时间:2015-01-01 21:11:15
def foo(x=[]): x.append(1); print(x)foo(); foo()得到:[1][1, 1]第一次调用foo() 得到x =[] ,然后x = [1],x指向列表[1]内存中的地址。但是第二次调用foo() , 不执行x = []参考 Python 官方 Tutorial 中的内容Important warning: The default value is evaluated only once. This makes a d.........【阅读全文】
发布时间:2015-01-01 20:50:18
原文地址:http://www.cnblogs.com/myd7349/p/how_to_use_wraps_of_functools.html《A Byte of Python》17.8节讲decorator的时候,用到了functools模块中的一个装饰器:wraps。因为之前没有接触过这个装饰器,所以特地研究了一下。何谓“装饰器”?《A Byte of Python》中这样讲:“Decorators are a shortc.........【阅读全文】
发布时间:2015-01-01 20:42:17
原文地址:http://blog.lzhaohao.info/archive/python-serialization-library-benchmark/Python序列化库效率对比Posted in python On 2011-07-15 09:50:01 , tagged with python.Python内置marshal, cPickle等序列化库,但cPickle效率不太理想,marshal文档也说不保证版本兼容性。今天在.........【阅读全文】
chinaunix网友2009-10-12 16:19
你好,你在Google Code上放的sg2fcitx的mainme.c源代码我下载编译会出现段错误。请问你的编译环境是什么?GCC版本是多少? 谢谢。