#Day26 - Assert Statements in Python and When NOT to use them
Today we will discuss the assert statement in Python.
Assert statements are a great tool for debugging. Given a boolean condition, they will raise an error if the condition evaluates to False. More specifically, it raises an "AssertionError". We can ...
realpythonproject.hashnode.dev4 min read