In this quiz, you'll test your understanding of Python IDLE, the default integrated development environment (IDE) that comes bundled with every Python installation. You'll revisit how to interact with Python directly in IDLE, edit and execute Python ...
Are you looking for some projects where you can practice your Python skills? Would you like to experiment with building a generative AI app or an automated knowledge graph sentiment analysis tool? This week on the show, we speak with Raymond Camden . ...
In this tutorial, you'll learn how to use Loguru to quickly implement better logging in your Python applications. You'll spend less time wrestling with logging configuration and more time using logs effectively to debug issues.
In this video course, you'll learn how to use Python's subprocess module to run and control external programs from your scripts. You'll start with launching basic processes and progress to interacting with them as they execute.
In this tutorial, you'll learn how to work effectively with Python's set data type. You'll learn how to define set objects and discover the operations that they support. By the end of the tutorial, you'll have a good feel for when a set is an ...
In this quiz, you'll test your understanding of using Selenium with Python for web automation. You'll revisit concepts like launching browsers, interacting with web elements, handling dynamic content, and implementing the Page Object Model (POM) ...
In this video course, you'll learn about the issues that can occur when your code is run in a multithreaded environment. Then you'll explore the various synchronization primitives available in Python's threading module, such as locks, which help you ...
In this tutorial, you'll learn how to create and manage your Python projects using uv, an extremely fast Python package and project manager written in Rust.