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
90 results
Python didn't “remember” your data — **this is a classic default argument trap** In this short, you learned why lists used as ...
0 views
9 hours ago
Day 27 of my Python learning journey Today I learned about function arguments in Python: • Positional arguments • Default ...
96 views
6 days ago
Only 1% Get This Python Quiz Right! Think you really know Python? Let's test it. This tricky question exposes one of the ...
3 hours ago
The argparse module is a powerful tool for parsing command-line arguments in Python. Start by defining your CLI tool's expected ...
19 hours ago
This Python function breaks silently. Your function remembers old data without you knowing. Want LONG videos? Comment ...
12 hours ago
At first glance, this function looks totally fine. But the real trick is hidden in the default argument. In Python, default parameter ...
122 views
2 days ago
Learn a clean and modern approach to parse command-line arguments of varying data types dynamically using Python's ...
7 days ago
This common Python mistake can silently crash real-world projects 💀 Using mutable default arguments like lists or ...
502 views
5 days ago
Python mutable default arguments is one of the most dangerous and misunderstood features in Python functions. In this video, I ...
12 views
3 days ago
This visual animation explains one of the most dangerous Python mistakes — Mutable Default Arguments You'll clearly see: ...
1,040 views
4 days ago
Use default values in function parameters.
Learn how to stop Python's Click library from automatically expanding environment variables passed as command-line arguments ...
Variable Length Arguments in Python | *args & kwargs Explained with Examples In this video, you will learn Variable Length ...
204 views
In this video, you'll learn how to use Python functions to write cleaner, reusable code — no more spaghetti code! We cover: * Why ...
Learn how positional arguments work in Python functions and why the order of values matters when calling a function. This short ...
32 views
Learn how default arguments work in Python functions and how they make functions flexible by allowing optional parameters.
150 views
Positional Arguments in Python | Function Arguments Explained with Examples In this video, you will learn Positional Arguments ...
100 views
Partial is a higher-order function (HOF) in python. It can be imported from python's functools library. It allows you to "freeze" a ...
369 views
This bug has crashed real systems. Default arguments are evaluated once, not every call. If you don't know this, you will ship a ...
1 day ago
just following windbg to see how the addresses of variables of arguments and parameters in a function call are defined.
Integer division? Float division? It all depends on the arguments! Both ints = int result. One+ floats = float result. Floor division ...
225 views
Keyword Arguments in Python | Function Arguments Explained with Examples In this video, you will learn Keyword Arguments in ...
Here's what's happening step-by-step The function uses a list as a default argument That default list is created only once, not ...
21 views