i have been reading some sourcecodes and in several places I have seen the usage of assert. What does it mean exactly? what is it's usage?
|
|
The
... you're telling the program to test that condition, and abort as if a fatal error had occured (or raise an exception, or whatever) if the condition is false. In Python, it's roughly equivalent to something like:
Edit: as per Duncan's suggestion, this would happen in a Python shell:
See here for the relevant documentation. Cheers. |
|||||||
|
|
Other have already gave you links to documentation. You can try the following in a interactive shell:
The first try does nothing, while the second raises and exception. This is the first hint: asserts is useful to check conditions that should be true in a given position of your code (usually, the beginning (preconditions) and the end of a function (postconditions)). asserts are actually highly tied to programming by contract, which is a very useful engineering practice: |
|||
|
|
|
As other answers have noted,
This can be useful if you want to thoroughly test your code, then release an optimized version when you're happy that none of your assertion cases fail - when optimization is on, the |
|||
|
|
|
From docs:
Here you can read more: http://docs.python.org/release/2.5.2/ref/assert.html |
|||
|
|