摘要: PyQt5-5.4-gpl-Py3.4-Qt5.4.0+eric6-x64环境搭建和配置 2015.9.26.2:05.没办法,,,哈哈哈的,兵们整天能玩上玩新鲜的。顺应人的潮流,继续新鲜一把。 从都不知道几辈子之前的,linux +oracle 搭建过一次环境,原来就喜欢搭建环境。到今天啦都,有环 阅读全文
posted @ 2016-04-09 11:08 枫之殇 阅读(2660) 评论(0) 推荐(1) 编辑
摘要: def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata unicodedata.numeric(s) return True except (TypeError, Valu 阅读全文
posted @ 2016-03-09 10:44 枫之殇 阅读(271) 评论(0) 推荐(0) 编辑
摘要: python 的异常 2010-11-03 22:36:36 python的try语句有两种风格 一:种是处理异常(try/except/else) 二:种是无论是否发生异常都将执行最后的代码(try/finally) try/except/else风格 try: <语句> #运行别的代码 exce 阅读全文
posted @ 2016-03-08 17:34 枫之殇 阅读(717) 评论(0) 推荐(0) 编辑