Python *ARGS & **KWARGS are awesome! 📦

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024

ความคิดเห็น • 108

  • @BroCodez
    @BroCodez  ปีที่แล้ว +53

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

    • @simeonehdhdyxhxy
      @simeonehdhdyxhxy ปีที่แล้ว +2

      yesirr

    • @gamePlays9699
      @gamePlays9699 ปีที่แล้ว +1

      def add(*args):
      return type(args)
      print(add())

    • @Synceditxboxoffice
      @Synceditxboxoffice ปีที่แล้ว +1

      brother if you are ethical hacker try to start a series of writing own scripts for CTF

    • @user-nw5km7is9t
      @user-nw5km7is9t 10 หลายเดือนก่อน

      for the chairty statement.

    • @gavinjoes.j5830
      @gavinjoes.j5830 9 หลายเดือนก่อน

      Thank you bro 😊

  • @photoshopdepth
    @photoshopdepth ปีที่แล้ว +51

    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

  • @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!

  • @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.

  • @ken_tx
    @ken_tx 7 หลายเดือนก่อน +1

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

  • @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

  • @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

  • @b00i00d
    @b00i00d ปีที่แล้ว

    most complete coverage of the subject - thanks!

  • @marymary8195
    @marymary8195 ปีที่แล้ว +1

    thank you so much for these tutorials!

  • @MK-vu4qt
    @MK-vu4qt 7 หลายเดือนก่อน

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

  • @pankela8883
    @pankela8883 ปีที่แล้ว +1

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

  • @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.

  • @murfdaddydolla
    @murfdaddydolla ปีที่แล้ว

    Insanely good explanation! Thanks bro!

  • @Cyborgcupine
    @Cyborgcupine 9 หลายเดือนก่อน

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

  • @subinkv6849
    @subinkv6849 4 หลายเดือนก่อน

    You are the real coding bro💗

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

  • @DeejayRobert
    @DeejayRobert 8 หลายเดือนก่อน

    The bro man is excellent.

  • @chernoboogaloo
    @chernoboogaloo 3 หลายเดือนก่อน

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

  • @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!

  • @datpham2482
    @datpham2482 9 หลายเดือนก่อน

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

  • @jasper5016
    @jasper5016 5 หลายเดือนก่อน

    You are the hope!!

  • @Trebrehq
    @Trebrehq ปีที่แล้ว

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

  • @fredperry492
    @fredperry492 8 หลายเดือนก่อน

    Awesome thanks

  • @MystikPrae
    @MystikPrae ปีที่แล้ว

    Lots of love from nepal, bro

  • @yaekobbonke5704
    @yaekobbonke5704 ปีที่แล้ว

    Easily understood. Thank you sirr

  • @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

  • @excelinaccounting8094
    @excelinaccounting8094 2 หลายเดือนก่อน

    Love it❤

  • @akashcode
    @akashcode ปีที่แล้ว

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

  • @WANGLAO-yr8wl
    @WANGLAO-yr8wl 7 หลายเดือนก่อน

    Great Job! Very Clear!

  • @someMF_XD
    @someMF_XD 2 หลายเดือนก่อน

    All hail Dr. Spongebob Harold Squarepants III !!

  • @zappozzz
    @zappozzz 9 หลายเดือนก่อน

    You do great videos.

  • @Aerish369
    @Aerish369 ปีที่แล้ว

    Thank you

  • @casualgamer817
    @casualgamer817 ปีที่แล้ว

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

  • @simeonehdhdyxhxy
    @simeonehdhdyxhxy ปีที่แล้ว +2

    best coder ever

  • @christianihechi
    @christianihechi 3 หลายเดือนก่อน

    Thank you!!!

  • @5coffeebreak2
    @5coffeebreak2 5 หลายเดือนก่อน

    Thanks, very useful, simple and clear

  • @mccauleybacalla2228
    @mccauleybacalla2228 7 หลายเดือนก่อน

    ththank you so much

  • @willcucked5575
    @willcucked5575 ปีที่แล้ว

    amazing

  • @3minutesbibletruth
    @3minutesbibletruth ปีที่แล้ว

    Thank you boss for your good work

  • @deadlinedis1949
    @deadlinedis1949 9 หลายเดือนก่อน

    thanks

  • @jokeguy5946
    @jokeguy5946 ปีที่แล้ว +1

    Bro is posting faster than speed of light

  • @wandersonhelmer1810
    @wandersonhelmer1810 ปีที่แล้ว

    I'd love to see a PHP series

  • @hakim6933
    @hakim6933 ปีที่แล้ว

    Bro! you're the man!

  • @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.

  • @jathebest2835
    @jathebest2835 ปีที่แล้ว

    Thanks, Bro!😎👍

  • @kohukesfr3840
    @kohukesfr3840 ปีที่แล้ว +1

    good video :D

  • @bekturasanbekov1979
    @bekturasanbekov1979 ปีที่แล้ว

    thx 4 vid bro !

  • @dreddskitv
    @dreddskitv 8 หลายเดือนก่อน

    👍👍👍

  • @arushsinghal4490
    @arushsinghal4490 ปีที่แล้ว

    loved it

  • @jonydude2645
    @jonydude2645 ปีที่แล้ว

    Thank you Bro, u r real Chad

  • @zabehullahalizadeh2310
    @zabehullahalizadeh2310 ปีที่แล้ว

    You are like the creator of python Bro.

  • @dj_arimakousei
    @dj_arimakousei หลายเดือนก่อน

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

  • @rinrin8455
    @rinrin8455 ปีที่แล้ว

    thank you so much

  • @kofiramseyarthur4391
    @kofiramseyarthur4391 ปีที่แล้ว

    Dr. Bro Code III
    Django series please

  • @DspycesRecords
    @DspycesRecords ปีที่แล้ว

    Thanks Bro👍👍

  • @MarjorieRoseMasilang
    @MarjorieRoseMasilang 2 หลายเดือนก่อน

  • @saipavan77
    @saipavan77 ปีที่แล้ว

    Thanks

  • @asaadkittaneh2928
    @asaadkittaneh2928 ปีที่แล้ว

    you are awesome!

  • @Samgenkk
    @Samgenkk ปีที่แล้ว

    Thanks bro

  • @riddleiddle
    @riddleiddle 5 หลายเดือนก่อน

    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

  • @DarkSoulGaming7
    @DarkSoulGaming7 ปีที่แล้ว

    Ilysm !!!!

  • @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

  • @pinaka4492
    @pinaka4492 ปีที่แล้ว

    bro please make a Django series

  • @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

  • @Pawlo370
    @Pawlo370 9 หลายเดือนก่อน

    11:20 in python 3.12 we can

  • @ZuRqi
    @ZuRqi ปีที่แล้ว

    In which playlist can we find them from the beginning?

  • @CheatersCalcc
    @CheatersCalcc ปีที่แล้ว

    I love you bro:)

  • @Pawlo370
    @Pawlo370 9 หลายเดือนก่อน +1

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

  • @al-cadaalachannel3194
    @al-cadaalachannel3194 ปีที่แล้ว

    Thanks bro . Where do I get python book?

  • @simonvanek3389
    @simonvanek3389 ปีที่แล้ว

    git tutorial when?

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

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

  • @xidayoung
    @xidayoung 9 หลายเดือนก่อน

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

  • @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

  • @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 2 หลายเดือนก่อน +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 2 หลายเดือนก่อน +1

      Oh thx 🙏

  • @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

  • @alfonzokgakole8001
    @alfonzokgakole8001 ปีที่แล้ว

    Why don't u use vscode

  • @casualgamer817
    @casualgamer817 ปีที่แล้ว

    📦

  • @Marleos
    @Marleos ปีที่แล้ว +1

    What IDE do you use bro?

  • @kofiramseyarthur4391
    @kofiramseyarthur4391 ปีที่แล้ว

    Dr. Bro Code III
    Django series please