Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
3,186 results
What's the best way to debug Python code with pdb? 🎟️ Using pdb makes finding bugs easier and faster. 🎟️ You can pause ...
5,109 views
1 year ago
What's the secret to debugging with pdb live? Pdb lets you debug your code while it runs. This is useful for fixing errors ...
359 views
What's the secret to mutable default arguments? Using mutable objects as defaults can cause issues. They persist across ...
117 views
shorts Check out the channel to learn how to do this yourself!
3,189 views
2 years ago
tries to fix error* gets the old error message back #Shorts #Programming #coding #python #datascience.
4 views
3 years ago
What is the best way to debug Python code? To debug effectively, use Pythons built-in pdb module. This allows you to pause ...
1,170 views
When should I use any() and all() functions? You should use `any()` when you want to check if at least one condition is true.
42 views
shorts Ever find yourself in a position where a adding a prints to your code is not enough to find the bug, but its too much of a ...
605 views
Think you're a coding pro? Here's a Python bug challenge that trips up even experienced devs. You have only 3 seconds ...
283 views
4 months ago
What is traceback.format_exc() for error logging? traceback.format_exc() captures detailed error info. Its useful for logging ...
396 views
What is best way to learn debugging? #Shorts #Programming #coding #python #datascience.
0 views
Why is Pythons None not equal to False? None is a special constant in Python representing no value. False is a boolean ...
568 views
What's the best approach to validate data classes? Validation is key to ensuring data integrity in classes. But many ...
561 views
What's the trick to live debugging with pdb? Live debugging in Python requires control without stopping everything. Using ...
24 views
What's the hack for debugging Python code in production? Using logging is crucial for understanding what happens in ...
104 views
What's the trick to catching multiple exceptions in one line? Catching multiple exceptions helps make code cleaner.
22 views
How can globals() impact your Python code? The globals() function provides access to the global namespace. You can use ...
49 views
How to create an in-memory SQLite database for testing? Using an in-memory SQLite database is great for testing. It runs ...
338 views
How does sys._getframe() impact Python debugging? It lets you inspect the call stack directly. This can help you understand ...
25 views
The full version can be found here: https://www.youtube.com/watch?v=56ULVXIlorw If you prefer reading there is an associated ...
58 views
5 months ago