上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: http://blog.csdn.net/jfkidear/article/details/7592648 阅读全文
posted @ 2014-07-10 16:37 亲亲小强 阅读(98) 评论(0) 推荐(0) 编辑
摘要: http://bdxnote.blog.163.com/blog/static/8444235201241510433394/http://www.cnblogs.com/crazyhack/archive/2011/12/14/2286037.html 阅读全文
posted @ 2014-07-01 20:25 亲亲小强 阅读(143) 评论(0) 推荐(0) 编辑
摘要: http://361324767.blog.163.com/blog/static/1149025252012370159618/ 阅读全文
posted @ 2014-06-26 18:05 亲亲小强 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 最近刚加入一个新的项目,感觉学到不少东西,其中就是发现有很多因素会影响到自己的工作效率,想了想,大致有以下几点:1.有时候有厌倦心理,感觉不想干这份工作了,于是整个人都提不起精神来,这个貌似是最大的一个不利因素2.有时候突然想放松一下自己,感觉连续绷紧神经好几天了,该是放松的时候了,可有时候放松的话... 阅读全文
posted @ 2014-06-19 23:28 亲亲小强 阅读(979) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/lilaczhu/p/3798180.html 阅读全文
posted @ 2014-06-19 23:10 亲亲小强 阅读(100) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/chuanj1985/article/details/6873830 阅读全文
posted @ 2014-06-18 20:17 亲亲小强 阅读(151) 评论(0) 推荐(0) 编辑
摘要: def main(): try: print "try" return True except: print "except" finally: print "finally" print "main"输出:tryfinally就算try中有return语句,最终的finally也会被执行。其他... 阅读全文
posted @ 2014-06-18 19:57 亲亲小强 阅读(297) 评论(0) 推荐(0) 编辑
摘要: list函数: 功能:将字符创转化为列表,例:列表基本函数: 1.元素赋值,例:注意:通过list[0]= 'hel',如果原来位置上有值,会覆盖掉原来的。2.分片操作1)显示序列,例:注意:(1)list1[beg:end]将显示列表的从list1[beg]到list1[end-1]的元素,l... 阅读全文
posted @ 2014-06-17 22:37 亲亲小强 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/pythonimport tracebacktry: 1/0#except Exception,e:# print traceback.format_exc() except Exception as e: print e#!/usr/bin/pythonimport tra... 阅读全文
posted @ 2014-06-17 11:11 亲亲小强 阅读(279) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/benkaoya/article/details/8680886 阅读全文
posted @ 2014-06-16 20:56 亲亲小强 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页