Python с нуля до DevOps на практике за 1,5 часа
Test driven development with python
Test-Driven Development (TDD) is a software development process that emphasizes writing tests Before writing the code that implements the functionality. It’s a cycle of short iterations where you: Write a test (Red): Start by writing a failing test case that defines a specific aspect of the desired functionality. The test should fail initially because the code to implement it doesn’t exist yet. Run the test (Fail): Run the test suite to confirm that the newly written test case fails as expected. This ensures the test is correctly set up and that you’re actually testing something. Write the minimal code to pass the test (Green): Implement just enough code to make the failing test pass...
17 книг для начинающих, опытных и продвинутых Python-разработчиков
Опытные Python-разработчики советуют книги о программировании и рассказывают, как выжимать из них максимальную пользу. Мы попросили экспертов, сведущих в Python-разработке, посоветовать хорошую литературу для программистов разных грейдов. В итоге получилась подборка из 17 книг, проверенных временем, опытом и карьерой :) В опросе принимали участие: Книги для начинающих Python-разработчиков «В последние годы самыми популярными источниками информации стали блоги и ютуб-каналы. Но лучшим способом изучить язык по-прежнему остаётся документация...