Python *ARGS & **KWARGS are awesome! 📦

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

Комментарии • 108

  • @BroCodez
    @BroCodez  Год назад +54

    # ----- *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")

  • @photoshopdepth
    @photoshopdepth Год назад +52

    It's actually insane how effective you are in teaching these concept.. you're in another league dude. Please keep these coming.

    • @0e0
      @0e0 8 месяцев назад

      truly great

  • @zabehullahalizadeh2310
    @zabehullahalizadeh2310 Год назад +33

    Bro please don't stop the playlist of python. Every one of your python videos worth millions.

  • @nonoobott8602
    @nonoobott8602 Год назад +4

    By far the most explicit video on kwargs and args I've come across. Thanks so much for sharing

  • @RainnFTWj
    @RainnFTWj Год назад +13

    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.

  • @doJLife
    @doJLife Год назад +2

    the way he keeps it soo simple, understandable and even fun "Dr. Spongebob Harold Squarepants" 😂 i love it.

  • @emmanuelsharp7031
    @emmanuelsharp7031 Год назад +2

    The way you teach this stuff, even a baby can understand... thanks man. really appreciate

  • @oszi7058
    @oszi7058 Год назад +1

    NIce actually someone is using their reach just at random to help other ppl! that's so nice!

  • @robertschmidt8624
    @robertschmidt8624 Год назад +1

    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

  • @ken_tx
    @ken_tx 8 месяцев назад +1

    You made this easy to understand. Probably the best video I’ve seen on this topic. Thank you!

  • @juankorsia7909
    @juankorsia7909 Год назад +2

    Amazing explication about it. Right now I undertand it. Thanks a lot!!!

  • @jankempynck3745
    @jankempynck3745 9 месяцев назад

    This is the best explanation or *args & **kwargs, that I ever have heard and seen. Congratulations !!!

  • @chriskeo392
    @chriskeo392 Год назад +2

    Quick and concise
    Sniper precision
    Let's get a Sqlalchemy video. Building models and using existing models etc

  • @jcdragneel
    @jcdragneel Год назад

    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.

  • @MK-vu4qt
    @MK-vu4qt 8 месяцев назад

    What a great explanation! I love you Bro! You're the best. Thank you so much 🙏

  • @subinkv6849
    @subinkv6849 5 месяцев назад

    You are the real coding bro💗

  • @pankela8883
    @pankela8883 Год назад +1

    Thank you so much I really needed this, how did I miss on something this important

  • @b00i00d
    @b00i00d Год назад

    most complete coverage of the subject - thanks!

  • @Cyborgcupine
    @Cyborgcupine 9 месяцев назад

    I paused the video and entered state Michigan, unpaused and two seconds later you did as well :O

  • @jasper5016
    @jasper5016 5 месяцев назад

    You are the hope!!

  • @marymary8195
    @marymary8195 Год назад +1

    thank you so much for these tutorials!

  • @DeejayRobert
    @DeejayRobert 8 месяцев назад

    The bro man is excellent.

  • @chernoboogaloo
    @chernoboogaloo 4 месяца назад

    Comment for engagement purposes, good video, I really love the channel

  • @user-nh7ob9tw2f
    @user-nh7ob9tw2f 8 месяцев назад +2

    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

    • @happypig8690
      @happypig8690 8 месяцев назад +2

      def multiply(*factors):
      product = 1
      for factor in factors:
      product *= factor
      return product

  • @datpham2482
    @datpham2482 9 месяцев назад

    I'm here just to check how args and kwargs are pronounced, but I find this lesson awesome ultimately!

  • @d.h.y
    @d.h.y Год назад

    Your video is in totally another class !!!

  • @user-dc7oj3el7o
    @user-dc7oj3el7o 6 месяцев назад

    Thanks! This was a real nice explanation:)

  • @murfdaddydolla
    @murfdaddydolla Год назад

    Insanely good explanation! Thanks bro!

  • @excelinaccounting8094
    @excelinaccounting8094 3 месяца назад

    Love it❤

  • @simeonehdhdyxhxy
    @simeonehdhdyxhxy Год назад +2

    best coder ever

  • @akashcode
    @akashcode Год назад

    Thank you very much bro code. I am from India...❤❤

  • @LupaSeal
    @LupaSeal Год назад +1

    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!

  • @MystikPrae
    @MystikPrae Год назад

    Lots of love from nepal, bro

  • @dreddskitv
    @dreddskitv 9 месяцев назад

    👍👍👍

  • @fredperry492
    @fredperry492 8 месяцев назад

    Awesome thanks

  • @Trebrehq
    @Trebrehq Год назад

    i dont understand how i learned c++ before python and my brains still working

  • @WANGLAO-yr8wl
    @WANGLAO-yr8wl 8 месяцев назад

    Great Job! Very Clear!

  • @5coffeebreak2
    @5coffeebreak2 5 месяцев назад

    Thanks, very useful, simple and clear

  • @willcucked5575
    @willcucked5575 Год назад

    amazing

  • @MarjorieRoseMasilang
    @MarjorieRoseMasilang 2 месяца назад

  • @christianihechi
    @christianihechi 4 месяца назад

    Thank you!!!

  • @Aerish369
    @Aerish369 Год назад

    Thank you

  • @zappozzz
    @zappozzz 9 месяцев назад

    You do great videos.

  • @casualgamer817
    @casualgamer817 Год назад

    LK
    1:41 / 14:53
    Python *ARGS & **KWARGS are awesome

  • @riddleiddle
    @riddleiddle 6 месяцев назад

    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

  • @hakim6933
    @hakim6933 Год назад

    Bro! you're the man!

  • @mccauleybacalla2228
    @mccauleybacalla2228 8 месяцев назад

    ththank you so much

  • @yaekobbonke5704
    @yaekobbonke5704 Год назад

    Easily understood. Thank you sirr

  • @bekturasanbekov1979
    @bekturasanbekov1979 Год назад

    thx 4 vid bro !

  • @dj_arimakousei
    @dj_arimakousei Месяц назад

    print outside outloop isn't add the new line , i can't see it when you execute code

  • @kenhaley4
    @kenhaley4 9 месяцев назад

    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.

  • @deadlinedis1949
    @deadlinedis1949 10 месяцев назад

    thanks

  • @3minutesbibletruth
    @3minutesbibletruth Год назад

    Thank you boss for your good work

  • @jathebest2835
    @jathebest2835 Год назад

    Thanks, Bro!😎👍

  • @someMF_XD
    @someMF_XD 3 месяца назад

    All hail Dr. Spongebob Harold Squarepants III !!

  • @jonydude2645
    @jonydude2645 Год назад

    Thank you Bro, u r real Chad

  • @kofiramseyarthur4391
    @kofiramseyarthur4391 Год назад

    Dr. Bro Code III
    Django series please

  • @rinrin8455
    @rinrin8455 Год назад

    thank you so much

  • @kohukesfr3840
    @kohukesfr3840 Год назад +1

    good video :D

  • @arushsinghal4490
    @arushsinghal4490 Год назад

    loved it

  • @zabehullahalizadeh2310
    @zabehullahalizadeh2310 Год назад

    You are like the creator of python Bro.

  • @superquran4512
    @superquran4512 Год назад +1

    @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 :)

  • @michaeljimenez9203
    @michaeljimenez9203 Год назад

    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

  • @wandersonhelmer1810
    @wandersonhelmer1810 Год назад

    I'd love to see a PHP series

  • @ab123-j7v
    @ab123-j7v Год назад

    you are awesome!

  • @DspycesRecords
    @DspycesRecords Год назад

    Thanks Bro👍👍

  • @jokeguy5946
    @jokeguy5946 Год назад +1

    Bro is posting faster than speed of light

  • @ZuRqi
    @ZuRqi Год назад

    In which playlist can we find them from the beginning?

  • @Samgenkk
    @Samgenkk Год назад

    Thanks bro

  • @phantomf41
    @phantomf41 Год назад

    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.

    • @yashindian4233
      @yashindian4233 10 месяцев назад +1

      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

  • @DarkSoulGaming7
    @DarkSoulGaming7 Год назад

    Ilysm !!!!

  • @al-cadaalachannel3194
    @al-cadaalachannel3194 Год назад

    Thanks bro . Where do I get python book?

  • @j.j.l3758
    @j.j.l3758 11 месяцев назад

    is there a reason why your python videos don't use the self. keyword? my class uses it and I get confused with it.

    • @theoriginalneckbeard
      @theoriginalneckbeard 3 месяца назад +1

      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.

    • @j.j.l3758
      @j.j.l3758 3 месяца назад +1

      Oh thx 🙏

  • @pinaka4492
    @pinaka4492 Год назад

    bro please make a Django series

  • @Runie2607
    @Runie2607 Год назад

    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

    • @stonestone9001
      @stonestone9001 Год назад +1

      Single asterisk as used in function declaration allows variable number of arguments passed from calling environment. Inside the function it behaves as a tuple.

    • @Runie2607
      @Runie2607 Год назад

      @@stonestone9001 Do you know what the '/' is doing???

    • @stonestone9001
      @stonestone9001 Год назад

      @@Runie2607 From what I have known,
      / means divide. For example:
      x=(8/4)
      print(x)
      result will be 2
      cause x=(8/4)
      =2

  • @ASHLEYZACHARYCTIGLAO
    @ASHLEYZACHARYCTIGLAO Год назад

    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)

  • @Pawlo370
    @Pawlo370 10 месяцев назад

    11:20 in python 3.12 we can

  • @CheatersCalcc
    @CheatersCalcc Год назад

    I love you bro:)

  • @Pawlo370
    @Pawlo370 10 месяцев назад +1

    instead "pass" you can type "..."

  • @Marleos
    @Marleos Год назад +1

    What IDE do you use bro?

  • @xidayoung
    @xidayoung 10 месяцев назад

    As a non-native English speaker: With this first video I saw from you, you convinced me to subscribe to your channel.

  • @alfonzokgakole8001
    @alfonzokgakole8001 Год назад

    Why don't u use vscode

  • @simonvanek3389
    @simonvanek3389 Год назад

    git tutorial when?

  • @casualgamer817
    @casualgamer817 Год назад

    📦

  • @saipavan77
    @saipavan77 Год назад

    Do you like SpongeBob and squarepants literally you put it in every video 😂

    • @BroCodez
      @BroCodez  Год назад

      I try and think of characters almost everybody knows of

    • @saipavan77
      @saipavan77 Год назад

      @@BroCodez yes thats engaging

  • @saipavan77
    @saipavan77 Год назад

    Thanks

  • @kofiramseyarthur4391
    @kofiramseyarthur4391 Год назад

    Dr. Bro Code III
    Django series please