THANK YOU!! I finally understand *args and **kwargs after at least a year of studying Python. I still have immense respect for my previous instructor, but this video finally gives Me the level of understand I need to write MY own codes. Thank You again.!! Rob
Great video as always, Bro Code. However, using the if statements there seems unnecessary as the get() method has a second parameter that sets a default value if the key doesn't exist. For example: kwargs.get('apt', '') The default value is set as '' here which wouldn't show up as anything in the output.
Thank you Bro. Taking intro to Scripting right now, every so often the reading material DOES NOT hit the mark for me. Glad you always seem to have something about what I am stuck on, cause I for the life of me could not get what the nonsense the reading material was trying to tell me. Pretty sure I will have to keep coming back to review the video with each prompt I need to code into, but still THank you for the video.
At 12:44 a simpler solution would be to just print(f"{kwargs.get('street')} {kwargs.get('apt') or ''}") (That's two single quotes after the word "or"). This would replace 'None' with an empty string, which is what you want.
Nice video but, i seem that *args are simple in adding but i found it a little bit complex when i write a code for multiplying so if u can show us 1 example in multiply *args please
hi bro code, i love your videos, how many years did it take you to get to the point to where you are at? It is a lot to learn i am a cs student first year thansk for the info
Hey bro, can you make a simple code in python that can print out dates in a sequence that skips several days after a specific number an then repeats? Lets say for example print 5 dates in a range a=5(prints 5 numbers or dates) and b=3(skips next 3) so the output dates should print out like 0,1,2,3,4,8,9,10,11,12,16,17,18,19,20. I want to see how you can do this with your simple and detailed explanation.
a = 5 # Number of dates to print b = 3 # Number of days to skip after printing # Initialize the current date current_date = 0 # Loop to generate and print the sequence of dates for _ in range(a): print(current_date) # Update the current date to the next date after skipping 'b' days current_date += 1 # Check if we need to skip 'b' days if _ % (a + b) >= a: current_date += b
I am confused with **kwargs example, are any of those values associated with each other? It seems like they're not key:value pairs, just individual strings
I've been contributing to a repo recently and in there functions' arguments they have `/` and `*` as follows ``` def function(arg1, arg2, /, *, kwarg1=1, kwarg2=2): pass ``` Can someone explain what `/` and `*` doing in the function arguments??? I've tried googling it but `*args` and `**kwargs` keep popping up
Single asterisk as used in function declaration allows variable number of arguments passed from calling environment. Inside the function it behaves as a tuple.
May be a bit late, but: in this video he is working with a function, not with a method inside a class. "self" is only used inside classes when you create a method, its a placeholder for the name of the object you create with the help of your class, which serves as a blueprint. A function is a method not bound to a class or an object, a method is a function bound to a class or an object. Its basically the same idea, but the naming varies depending on the context in which the concept is used.
HELLO GUYS CAN YOU MAKE A PROGRAM THAT SHUFFLES EVERY INPUT LETTER OR NUMBER AND OUTPUTS EVERY POSSIBILITY WITHOUT USING ANY RANDOM OR SHUFFLE FUNCTION. (PERMUTATIONS)
@Bro Code, I have a small program that needs debugging could you kindly help me please? I learnt a lot from your videos but this seems to be a little too much for me to solve. how can i contact you personally please? Thanks in advance buddy :)
# ----- *ARGS Example 1 -----
def add(*nums):
total = 0
for num in nums:
total += num
return total
print(add(1, 2, 3, 4))
# ----- *ARGS Example 2 -----
def display_name(*args):
print(f"Hello", end=" ")
for arg in args:
print(arg, end=" ")
display_name("Dr.", "Spongebob", "Harold", "Squarepants", "III")
# ----- **KWARGS -----
def print_address(**kwargs):
for value in kwargs.values():
print(value, end=" ")
print_address(street="123 Fake St.",
pobox="P.O Box 777",
city="Detroit",
state="MI",
zip="54321")
# ----- EXERCISE -----
def shipping_label(*args, **kwargs):
for arg in args:
print(arg, end=" ")
print()
if "apt" in kwargs:
print(f"{kwargs.get('street')} {kwargs.get('apt')}")
elif "pobox" in kwargs:
print(f"{kwargs.get('street')}")
print(f"{kwargs.get('pobox')}")
else:
print(f"{kwargs.get('street')}")
print(f"{kwargs.get('city')}, {kwargs.get('state')} {kwargs.get('zip')}")
shipping_label("Dr.", "Spongebob", "Squarepants",
street="123 Fake St.",
pobox="PO box #1001",
city="Detroit",
state="MI",
zip="54321")
yesirr
def add(*args):
return type(args)
print(add())
brother if you are ethical hacker try to start a series of writing own scripts for CTF
for the chairty statement.
Thank you bro 😊
It's actually insane how effective you are in teaching these concept.. you're in another league dude. Please keep these coming.
truly great
By far the most explicit video on kwargs and args I've come across. Thanks so much for sharing
Bro please don't stop the playlist of python. Every one of your python videos worth millions.
the way he keeps it soo simple, understandable and even fun "Dr. Spongebob Harold Squarepants" 😂 i love it.
NIce actually someone is using their reach just at random to help other ppl! that's so nice!
This is the best explanation or *args & **kwargs, that I ever have heard and seen. Congratulations !!!
You made this easy to understand. Probably the best video I’ve seen on this topic. Thank you!
The way you teach this stuff, even a baby can understand... thanks man. really appreciate
THANK YOU!! I finally understand *args and **kwargs after at least a year of studying Python. I still have immense respect for my previous instructor, but this video finally gives Me the level of understand I need to write MY own codes. Thank You again.!! Rob
Great video as always, Bro Code. However, using the if statements there seems unnecessary as the get() method has a second parameter that sets a default value if the key doesn't exist.
For example:
kwargs.get('apt', '')
The default value is set as '' here which wouldn't show up as anything in the output.
Amazing explication about it. Right now I undertand it. Thanks a lot!!!
nice tutorial sir. easy to understand the explanations and the examples.
most complete coverage of the subject - thanks!
Fantastic video, as usual!
Quick and concise
Sniper precision
Let's get a Sqlalchemy video. Building models and using existing models etc
LK
1:41 / 14:53
Python *ARGS & **KWARGS are awesome
What a great explanation! I love you Bro! You're the best. Thank you so much 🙏
thank you so much for these tutorials!
You are the real coding bro💗
Thank you Bro. Taking intro to Scripting right now, every so often the reading material DOES NOT hit the mark for me. Glad you always seem to have something about what I am stuck on, cause I for the life of me could not get what the nonsense the reading material was trying to tell me. Pretty sure I will have to keep coming back to review the video with each prompt I need to code into, but still THank you for the video.
Thank you so much I really needed this, how did I miss on something this important
Your video is in totally another class !!!
Insanely good explanation! Thanks bro!
I paused the video and entered state Michigan, unpaused and two seconds later you did as well :O
Great Job! Very Clear!
Thanks! This was a real nice explanation:)
I'm here just to check how args and kwargs are pronounced, but I find this lesson awesome ultimately!
Amazing as usual, would be amazing if you can build PHP training course, cannot find a good one to at the level that you teach!
Thanks, very useful, simple and clear
The bro man is excellent.
You do great videos.
Lots of love from nepal, bro
Love it❤
You are the hope!!
best coder ever
Easily understood. Thank you sirr
i dont understand how i learned c++ before python and my brains still working
Comment for engagement purposes, good video, I really love the channel
Bro! you're the man!
Thanks Bro👍👍
Thank you boss for your good work
At 12:44 a simpler solution would be to just
print(f"{kwargs.get('street')} {kwargs.get('apt') or ''}")
(That's two single quotes after the word "or").
This would replace 'None' with an empty string, which is what you want.
Bro is posting faster than speed of light
Nice video but, i seem that *args are simple in adding but i found it a little bit complex when i write a code for multiplying so if u can show us 1 example in multiply *args please
def multiply(*factors):
product = 1
for factor in factors:
product *= factor
return product
good video :D
Thanks, Bro!😎👍
Bro is great...
All hail Dr. Spongebob Harold Squarepants III !!
he's just the best
Thank you very much bro code. I am from India...❤❤
Awesome thanks
loved it
you are awesome!
thx 4 vid bro !
I'd love to see a PHP series
Thank you!!!
Thank you
ththank you so much
thank you so much
You are like the creator of python Bro.
bro is the best
👍👍👍
print outside outloop isn't add the new line , i can't see it when you execute code
Thanks bro
Thanks
Thanks bro . Where do I get python book?
Dr. Bro Code III
Django series please
Thank you Bro, u r real Chad
hi bro code, i love your videos, how many years did it take you to get to the point to where you are at? It is a lot to learn i am a cs student first year thansk for the info
As a non-native English speaker: With this first video I saw from you, you convinced me to subscribe to your channel.
In which playlist can we find them from the beginning?
I love you bro:)
11:20 in python 3.12 we can
Ilysm !!!!
bro please make a Django series
Hey bro, can you make a simple code in python that can print out dates in a sequence that skips several days after a specific number an then repeats? Lets say for example print 5 dates in a range a=5(prints 5 numbers or dates) and b=3(skips next 3) so the output dates should print out like 0,1,2,3,4,8,9,10,11,12,16,17,18,19,20. I want to see how you can do this with your simple and detailed explanation.
a = 5 # Number of dates to print
b = 3 # Number of days to skip after printing
# Initialize the current date
current_date = 0
# Loop to generate and print the sequence of dates
for _ in range(a):
print(current_date)
# Update the current date to the next date after skipping 'b' days
current_date += 1
# Check if we need to skip 'b' days
if _ % (a + b) >= a:
current_date += b
What IDE do you use bro?
I think he's using pycharm my dude
@@fabioeliasreisritter8827
Thank you :)
@@Marleos You're welcome bro
pycharm
♥
I am confused with **kwargs example, are any of those values associated with each other? It seems like they're not key:value pairs, just individual strings
My "print(add(1,2,3))" only prints the first value one, not the total, what could the problem be??
instead "pass" you can type "..."
I've been contributing to a repo recently and in there functions' arguments they have `/` and `*` as follows
```
def function(arg1, arg2, /, *, kwarg1=1, kwarg2=2):
pass
```
Can someone explain what `/` and `*` doing in the function arguments??? I've tried googling it but `*args` and `**kwargs` keep popping up
Single asterisk as used in function declaration allows variable number of arguments passed from calling environment. Inside the function it behaves as a tuple.
@@stonestone9001 Do you know what the '/' is doing???
@@Runie2607 From what I have known,
/ means divide. For example:
x=(8/4)
print(x)
result will be 2
cause x=(8/4)
=2
Do you like SpongeBob and squarepants literally you put it in every video 😂
I try and think of characters almost everybody knows of
@@BroCodez yes thats engaging
git tutorial when?
is there a reason why your python videos don't use the self. keyword? my class uses it and I get confused with it.
May be a bit late, but: in this video he is working with a function, not with a method inside a class.
"self" is only used inside classes when you create a method, its a placeholder for the name of the object you create with the help of your class, which serves as a blueprint.
A function is a method not bound to a class or an object, a method is a function bound to a class or an object. Its basically the same idea, but the naming varies depending on the context in which the concept is used.
Oh thx 🙏
HELLO GUYS CAN YOU MAKE A PROGRAM THAT SHUFFLES EVERY INPUT LETTER OR NUMBER AND OUTPUTS EVERY POSSIBILITY WITHOUT USING ANY RANDOM OR SHUFFLE FUNCTION. (PERMUTATIONS)
Why don't u use vscode
@Bro Code, I have a small program that needs debugging could you kindly help me please? I learnt a lot from your videos but this seems to be a little too much for me to solve. how can i contact you personally please? Thanks in advance buddy :)
📦
amazing
thanks
Dr. Bro Code III
Django series please