Python fragmentation knowledge (11): assert usage

Source: Internet
Author: User

Refer:

Http://www.cnblogs.com/herbert/archive/2013/01/12/2857233.html

The assert statement is also available in C or C ++. Short assertions. The following is a description from python help document:

Assert statements are a convenient way to insert debugging assertions into a program:

An assert statement is a convenient way to insert a debugging breakpoint to a program.

 

Format of the assert statement

assert expression

This statement is equivalent to the following sentence:

if __debug__:    if not expression: raise AssertionError

 

Assert can also be used for assertions of multiple expressions.

assert expression1, expression2

 

I wrote an example of assert usage for prime number determination.

def isPrime(n):    """This function return a number is a prime or not"""    assert n >= 2    from math import sqrt    for i in range(2, int(sqrt(n))+1):        if n % i == 0:            return False    return True

 

Assert is easy to use and can avoid unnecessary unknown errors.

The assert statement is also available in C or C ++. Short assertions. The following is a description from python help document:

Assert statements are a convenient way to insert debugging assertions into a program:

An assert statement is a convenient way to insert a debugging breakpoint to a program.

 

Format of the assert statement

assert expression

This statement is equivalent to the following sentence:

if __debug__:    if not expression: raise AssertionError

 

Assert can also be used for assertions of multiple expressions.

assert expression1, expression2

 

I wrote an example of assert usage for prime number determination.

def isPrime(n):    """This function return a number is a prime or not"""    assert n >= 2    from math import sqrt    for i in range(2, int(sqrt(n))+1):        if n % i == 0:            return False    return True

 

Assert is easy to use and can avoid unnecessary unknown errors.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.