Tag: assert statement in python
Use of assert statement in Python
Naveen
- 0
Assert statement are used to check whether the given logical or condition is True or False. if the condition is True, the program will continue to execute next line of code.. However, if the condition is False then the program will stop the execution and raise an AssertionError. Assert statement is defined using assert keyword…
Read More