码迷,mamicode.com
首页 >  
搜索关键字:except    ( 6601个结果
python的异常处理及异常类定义
python的异常处理语法和大多数语言相似:try: try块的语句...except exceptiontype1 as var:#使用as语句获得本次捕获到的异常的实例var except块语句...except exceptiontype2 as var: except块语句...exce.....
分类:编程语言   时间:2014-08-01 19:26:02    阅读次数:255
Cacti 自动报表实现
需求:1、取cacti的图时不需要登陆(只对可访问用户开放),但其它操作时需要登陆。2、每天早上把报表发送到指定邮件需求1:file:/cacti/graph_p_w_picpath.php//include("./include/auth.php"); include("./include/global.php");品茶:首先去掉验证模块,发现少了涵数,再去au..
分类:其他好文   时间:2014-07-31 21:18:41    阅读次数:625
守护进程和supervisor
守护进程和supervisor 前言 接触守护进程已经很久了,但是在工作中有时候却经常忘记它。这次是在需要后台跑一个十几万的数据处理工作,耗时较长的时候,习以为常的通过&将脚本放到后台去执行,将标准输出和错误输出重定向到日志文件。然后干其他的事情,却发现进程莫名奇妙的死掉,即使已经在所有可能出现异常的地方都比较注意,然后在合适的地方加上了try except这样的异常处理。但是任何异常...
分类:其他好文   时间:2014-07-31 09:57:16    阅读次数:231
HDU - 3117 Fibonacci Numbers
Description The Fibonacci sequence is the sequence of numbers such that every element is equal to the sum of the two previous elements, except for the first two elements f0 and f1 which are respect...
分类:其他好文   时间:2014-07-31 00:08:05    阅读次数:281
Single Number I & II
Single Number I 问题描述: Given an array of integers, every element appears twice except for one. Find that single one. 解题思路: 既然除了某个元素出现一次外,其他所有元素都出现两次,那么可以异或数组的所有元素,得到的结果就是我们所要找的那个元素的值。 class Solu...
分类:其他好文   时间:2014-07-30 12:19:53    阅读次数:184
CF 17B Hierarchy
Nick's company employed n people. Now Nick needs to build a tree hierarchy of «supervisor-surbodinate» relations in the company (this is to say that each employee, except one, has exactly one superv...
分类:其他好文   时间:2014-07-30 10:06:53    阅读次数:286
SQL Server 中关于EXCEPT和INTERSECT的使用方法
熟练使用SQL Server中的各种使用方法会给查询带来非常多方便。今天就介绍一下EXCEPT和INTERSECT。注意此语法仅在SQL Server 2005及以上版本号支持。EXCEPT是指在第一个集合中存在,可是不存在于第二个集合中的数据。INTERSECT是指在两个集合中都存在的数据。測试例...
分类:数据库   时间:2014-07-30 00:19:02    阅读次数:285
python3.x的异常处理
以前的python2.x的时候: try:         fp=urllib.request.urlopen(blogurl)     except Exception, e:         print (e)         print('download exception %s' % blogurl)         return 0   现在python3.x的时候: ...
分类:编程语言   时间:2014-07-29 14:58:28    阅读次数:279
python2
def singleton(lock): try: fcntl.flock(lock, fcntl.LOCK_EX | fcntl.LOCK_NB) except: print 'ho' exit(0)在guyang的util.py中的一段代码....
分类:编程语言   时间:2014-07-29 14:12:38    阅读次数:212
java常用工具方法2
/* * Copyright 2005 Joe Walker * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance wi...
分类:编程语言   时间:2014-07-29 13:53:20    阅读次数:484
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!