`
simohayha
  • 浏览: 1401134 次
  • 性别: Icon_minigender_1
  • 来自: 火星
社区版块
存档分类
最新评论

python中的Error-checking策略

阅读更多
  参考 python in nutshell 的第三版.

   1.在python中异常被认为无论什么时候只要能使程序更简单更强大就可以被使用。甚至异常可以被频繁的抛出.

   2.在很多语言中,他们所遵从的是"look before you leap" (LBYL),也就是说,在尝试一个操作之前首先应该先检查一下.这里我的理解就是LBYL只是关心语法而不是关心语义的表达。可是python中遵从的是"it's easier to ask forgiveness than permission"既(EAFP),这也是cobol所遵从的,呵呵我在这里的理解是什么都不管先做再说。EAFP更注重语义的表达。
   
  可以通过代码来比较LBYL与EAFP的不同,按照LBYL中我们的代码可能是这样

def safe_divide_1(x, y):
    if y==0:
        print "Divide-by-0 attempt detected"
        return None
    else:
        return x/y

  
  而按照EAFP我们的代码就是这样:
def safe_divide_2(x, y):
    try:
        return x/y
    except ZeroDivisionError:
        print "Divide-by-0 attempt detected"
        return None

  
 3而在使用EAFP风格的时候要注意使用else,比如下面的代码:
  
def trycalling(obj, attrib, default, *args, **kwds):
    try: return getattr(obj, attrib)(*args, **kwds)
    except AttributeError: return default

在这个代码中当如果当getattr的传进多个参数时程序就会出错,因此代码应当改为下面的
def trycalling(obj, attrib, default, *args, **kwds):
    try: method = getattr(obj, attrib)
    except AttributeError: return default
    else:return method(*args,**kwds)

 4 在python in nutshell 中,作者提出了LBYL的几点不足:
  
引用

The checks may diminish the readability and clarity of the common, mainstream cases where everything is okay.

The work needed for checking may duplicate a substantial part of the work done in the operation itself.

The programmer might easily err by omitting some needed check.

The situation might change between the moment the checks are performed and the moment the operation is attempted.


感觉作者很是推崇EAFP,不知道各位怎么看LBYL和EAFP?

分享到:
评论
2 楼 simohayha 2007-03-06  
刑天战士 写道
不仅仅是python吧,在java,C#中,也推崇这种形式。但不是任何时候都要用,比如:
   while(reader.read()!=EOF)

的时候就不应该用异常


呵呵,也没说就python用呀,不过python中的异常和java中的异常最大的区别。我感觉就是java中的异常只是为了语法来服务而不是为了语义,只能使用于一部分的情况,就像effictive java中所说的仅在异常情况下使用异常,而在python中的话一切都是为了程序的简洁,强大来考虑的,只要能满足这些情况,异常可以随便抛(就像一开始所说的).
1 楼 刑天战士 2007-03-06  
不仅仅是python吧,在java,C#中,也推崇这种形式。但不是任何时候都要用,比如:
   while(reader.read()!=EOF)

的时候就不应该用异常

相关推荐

    Python库 | spellbot-3.10.1.tar.gz

    安装完成后,你可以在Python代码中导入Spellbot库,并利用其提供的功能。例如: ```python import spellbot text = "Ths is a speling errorr." corrected_text = spellbot.correct(text) print(corrected_text) #...

    修复 there was an error checking the latest version of pip

    warning: there was an error checking the latest version of pip.

    python笔试题.docx

    1. 非法表示式: Python 中,赋值语句只能在同一个语句中进行,否则将抛出 SyntaxError。 知识点:Python 语法、赋值语句 2. 命令行参数:在 Python 中,使用 sys.argv 可以获取命令行参数。在这个问题中,argv[0]...

    Python Cookbook, 2nd Edition

    Python Cookbook, 2nd Edition By David Ascher, Alex Martelli, Anna Ravenscroft Publisher : O'Reilly Pub Date : March 2005 ISBN : 0-596-00797-3 Pages : 844 Copyright Preface The ...

    python3.6.5参考手册 chm

    Python参考手册,官方正式版参考手册,chm版。以下摘取部分内容:Navigation index modules | next | Python » 3.6.5 Documentation » Python Documentation contents What’s New in Python What’s New In ...

    matlab导入excel代码-utl_sas_defensive_programming_and_error_checking:SAS防御性

    matlab导入excel代码utl_sas_defensive_programming_and_error_checking SAS防御性编程和错误检查关键字:sas sql连接合并合并大数据分析宏oracle teradata mysql sas社区stackoverflow统计信息人工智慧AI Python R ...

    node-sass.zip

    gyp verb check python checking for Python executable "python2" in the PATH gyp verb `which` failed Error: not found: python2 gyp verb `which` failed at getNotFoundError ``` 这个问题有两个解决方案 ...

    python3.11(64位)安装包.docx

    3. **Error Handling**:增强了错误处理机制,引入了结构化异常处理(Structured Exception Handling),使开发者能够更精细地控制异常处理流程。 4. **Syntax Enhancements**:新增了一些语法糖,如彩色语法高亮等...

    基于mediastreamer2的网络电话实现流程以及源码库

    error: /user/include/python2.7/pyconfig.h:15:52: fatal error: arm-linux-gnueabi/python2.7/pyconfig.h: No such file or directory compilation terminated. 分析::找不到arm-linux-gnueabi/python2.7/...

    Python cookbook.pdf

    如果键不存在于字典中,则会抛出`KeyError`异常。为了避免这种情况,可以使用`dict.get()`方法,该方法在键不存在时返回默认值。 ```python value = my_dict.get('key', default_value) ``` **1.4 Adding an Entry ...

    Python检测业务网址是否正常

    logging.error(f"Error checking {url}: {e}") return False ``` 然后,定义主程序,读取文本文件中的网址,逐个进行检查: ```python def main(): with open('新建 文本文档.txt', 'r') as f: urls = f....

    PyPI 官网下载 | mypy-silent-0.2.0.tar.gz

    3. **错误处理(Error Handling)**:`mypy-silent` 的核心可能是如何优雅地处理类型检查中的错误。在Python中,错误处理通过`try/except`语句实现,可能这个库会捕获`mypy`的异常并进行自定义处理。 4. **包装器...

    python友情链接检查方法

    print(f"Error occurred while checking {url}: {e}") return None ``` 接下来,我们分析返回的HTML内容。在提供的示例中,作者检查了HTML内容中是否包含特定域名,如'360buy.com'或'jd.com',这可能是因为这些...

    SWE-HW:软件工程作业

    要运行错误检查版本:python3 jump_year_error_checking.py 只接受正整数。 如果使用linux和Python3进行了测试,则无论出于何种原因它都不能在Windows上运行,则可能必须删除shebang,它是文件的第一行。

    detectron2win10配置.docx

    - 编译过程中可能会遇到如下的警告信息:“Error checking compiler version for cl: [WinError 2] 系统找不到指定的文件”。这通常是由于编译环境未正确配置导致。可以参考[CSDN博客]...

    基于Python log 的正确打开方式

    10. 日志信息的格式化输出:在记录日志时,可以使用Python的字符串格式化方法,比如在***('Checking%s:%s'%(str(date),str(data_type)))中,我们使用了字符串的%格式化方法来输出变量date和data_type的值。...

    安卓基础学习笔记(附带代码案例)

    最后,在 MyEclipse 中编辑安卓项目代码时,可能会提示“Running Android Lint”类型错误,解决方法是选择 window-preferences-Android-Lint Error Checking,将 When saving files, check for errors 和 Run full ...

    COCI 2015 #1 Tasks

    **Description:** This task involves checking the completeness of a deck of poker cards using a robot programmed by Pero. The robot is capable of recognizing the suits and numbers of the cards. The ...

    使用Python的Bottle框架写一个简单的服务接口的示例

    这个脚本使用了Python标准库中的`unittest`模块来进行单元测试,并借助于`KazooClient`来连接并查询Zookeeper。 ```python from kazoo.client import KazooClient import unittest class ZkTest(unittest.TestCase...

Global site tag (gtag.js) - Google Analytics