https://realpython.com/python-assert-statement/ - статья о использовании assert не только в тестах
#assert #debugging
#assert #debugging
Realpython
Python's assert: Debug and Test Your Code Like a Pro – Real Python
In this tutorial, you'll learn how to use Python's assert statement to document, debug, and test code in development. You'll learn how assertions might be disabled in production code, so you shouldn't use them to validate data. You'll also learn about a few…