码迷,mamicode.com
首页 >  
搜索关键字:recent    ( 1003个结果
UVA 572 Oil Deposits油田(DFS求连通块)
UVA 572 DFS(floodfill) 用DFS求连通块Time Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uDescriptionDue to recent rains, water has pooled in ....
分类:其他好文   时间:2015-07-22 09:11:56    阅读次数:123
[Python学习日记]Python的异常处理
一.异常 Python遇到错误后会引发异常。若异常对象未被捕捉或处理,程序会回溯(traceback)来终止运行:1 print 1 / 02 3 Traceback (most recent call last):4 File "D:\coding_file\python_file\TestP.....
分类:编程语言   时间:2015-07-20 01:21:41    阅读次数:220
float([x]): 将一个字符串或数转换为浮点数。如果无参数将返回0.0
float([x]): 将一个字符串或数转换为浮点数。如果无参数将返回0.0>>> float(12)12.0>>> float(-122)-122.0>>> float('ada')Traceback (most recent call last): File "", line 1, in Va....
分类:其他好文   时间:2015-07-19 13:12:21    阅读次数:154
chr(i) 返回整数i对应的ASCII字符
>>> a122>>> b344>>> c = chr(a)>>> c'z'假如整数“i”超过了256将会爆出一个错误:>>> d = chr(b)Traceback (most recent call last): File "", line 1, in ValueError: chr() ar....
分类:其他好文   时间:2015-07-19 13:11:38    阅读次数:147
迭代器和iter()函数
1、先来个例子,有个初步的印象:myTuple=(123,'xyz',45.67) i=iter(myTuple) i.next() 123 i.next() 'xyz' i.next() 45.67 i.next() Traceback (most recent call last): File "", line 1, in? StopIteration上面的代码中通过iter()函数显式的使用了...
分类:其他好文   时间:2015-07-17 16:21:08    阅读次数:124
Cox Processes
以下翻译自: Recent Applications of Point Process Methods in Forestry Statistics 该文以林业木材统计为背景,分析了相关的统计学应用。下面主要翻译第6部分: 点过程 Cox过程 对于树木模型来说,Cox模型是一类十分灵活而且重要的方法...
分类:其他好文   时间:2015-07-10 22:09:11    阅读次数:173
缓存问题
网页图片在微信加载的时候位置偏移。 最后找到原因之前调试的时候图片位置没定好,加载时访问缓存所以偏移 在html头部加上解释 - client/browser is willing to accept a page that is more recent than the number o...
分类:其他好文   时间:2015-07-02 11:45:38    阅读次数:105
Python 2.x和3.x不同点
1.print和print()2.yield出现下面的错误Traceback (most recent call last): File “”, line 1, in f.next()AttributeError: ‘generator’ object has no attribute ‘...
分类:编程语言   时间:2015-07-01 17:17:42    阅读次数:166
Take Advantage of Code Analysis Tools
Take Advantage of Code Analysis ToolsSarah Mount THE VALUE OF TESTING is something that is drummed into software devel- opers from the early stages of their programming journey. In recent years, the r...
分类:其他好文   时间:2015-07-01 10:00:07    阅读次数:86
关于xmpp协议发送消息,登录认证SSL报错的问题
Q:错误描述如下Traceback(most recent call last):File"/tails-share/features/scripts/otr-bot.py", line 197,inotr_bot.serve_forever()File"/usr/lib/python2.7/dis...
分类:其他好文   时间:2015-06-30 17:52:37    阅读次数:144
1003条   上一页 1 ... 80 81 82 83 84 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!