Тёмный
No video :(

Unpacking Variables in Python | how to use *argsv and **kwargs 

Oggi AI - Artificial Intelligence Today
Подписаться 77 тыс.
Просмотров 13 тыс.
50% 1

Опубликовано:

 

20 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 41   
@crushthedarkforce
@crushthedarkforce 3 года назад
split() returns substrings, not integers. So if you do a,b,c = '4 5 6'.split(), a will be a string '4', b will be a string '5', and c '6'. Then if you 'add' a and b, they will be concatenated as '45'
@raibahati
@raibahati 3 года назад
Absolutely, I have noticed too that he made a mistake. Split() is a string method and it returns a list of substrings. So each value will have to be of the string class and not of the int class.
@fe3tpls36
@fe3tpls36 3 года назад
May god bless your soul i was looking everywhere for a basic explanation and i found your channel.
@gabehcuodsuoitneterp203
@gabehcuodsuoitneterp203 2 года назад
Wooow - **Great** teacher! 👍
@Broughtvulture
@Broughtvulture 2 года назад
Thanks for the tutorial, i like how you went through examples while you explained it. Not many people do that
@williamli55
@williamli55 2 года назад
I love that mGaetz falls into the same category as Betamax.
@rch308
@rch308 Год назад
Matt Gaetz = loser. That's great
@mehmetkaya4330
@mehmetkaya4330 Год назад
Very well explained! Thanks
@SaraKolvinsky
@SaraKolvinsky 2 года назад
@4:58 Thanks for the details about this!
@omt2526
@omt2526 Год назад
Great work, simple and very helpful. Thank you
@ianmasie6550
@ianmasie6550 3 года назад
Great job explaining this! Thank you!
@akiratoriyama1320
@akiratoriyama1320 4 года назад
Great tutorial sir!!
@IanVidaurre
@IanVidaurre 4 года назад
That was explained wonderfully, thank you!
@amalkrishna5118
@amalkrishna5118 2 года назад
thank u uncle i was looking for my board exams
@jk3089
@jk3089 4 года назад
Great sharing, Sir!
@DoYouHaveAName1
@DoYouHaveAName1 2 года назад
Thank you for your videos! If there's the option, I always choose to see your explanation
@abdullahrazzaq3553
@abdullahrazzaq3553 2 года назад
عاشت ايدك يا سبع كلش افتهمت اني 😍😘❤
@Vikram-wx4hg
@Vikram-wx4hg 2 года назад
Very useful tutorial on the topic and very sharp. Thanks.
@Dequiter
@Dequiter 4 года назад
Thank you so much!!!
@eniocc
@eniocc 4 года назад
Thank you Sir.
@ireneanibogwu7242
@ireneanibogwu7242 3 года назад
Wow this was great. Thank you!
@alokgupta168
@alokgupta168 2 года назад
a,b,c='4 5 6'.split() # a, b and c will be type str not integer
@oggiai
@oggiai 2 года назад
Yes I may have a mistake in my video- it doesn’t automatically cast it to an int.
@alokgupta168
@alokgupta168 2 года назад
@@oggiai yes but overall your video is great
@user-or7ji5hv8y
@user-or7ji5hv8y 3 года назад
Super clear
@user-gy3hx9kx3s
@user-gy3hx9kx3s 2 года назад
اشهد ان لا اله الا الله اشهد ان محمد رسول لله
@joserobins
@joserobins 3 года назад
Great insights and explanation. losers['c'] makes so much sense in that particular category! cheers
@jeffreyconboy1626
@jeffreyconboy1626 2 года назад
do we know why when packing a dict with **kwargs that you cant use the standard dictionary syntax (a:100,b:200). Great video btw thanks
@claffert
@claffert 2 года назад
When you are using **kwargs for a parameter, you are telling it that what you are giving it is going to be packed into a dictionary. It's not expecting a dictionary, it's expecting keys and values with which it will create a dictionary. So, the reason it doesn't work is that isn't what is being expected. However, you CAN use the dictionary syntax, if you the ** operator to unpack a dictionary into names and values, which then would be repacked in the function. The following is legal syntax: func(**{'a':100, 'b':100})
@abodawead9039
@abodawead9039 2 года назад
you will not be able to do calculate on split return elements , because it returns strings "sub_strings" . do type(a or b or c ) . do int(a or b or c ) first , man focus . good job .
@edwardmacnab354
@edwardmacnab354 2 года назад
Not exactly what I'd call packing and unpacking but hey , It's only Python so no harm done I guess
@oggiai
@oggiai 2 года назад
That’s what Python calls packing and unpacking. And it’s useful to know
@edwardmacnab354
@edwardmacnab354 2 года назад
@@oggiai I hate to be the bearer of bad news , but, Python is almost as idiosyncratic and weird as Perl is. I think I'll stick to C/C++ , at least it makes sense consistently !
@AP-qs2zf
@AP-qs2zf 2 года назад
still don't get the point of **kwargs or why it's useful
@oggiai
@oggiai 2 года назад
it's just for passing an unknown number of key-value pairs to a function. There are other ways to do that (simply passing a dict), so I agree **kwargs is not extremely useful. But as a programmer you often need to figure out how other peoples' code works, so you should learn these nuances of the language.
@claffert
@claffert 2 года назад
There are many uses, but one of the most common is simply if you want to have lots of options when calling a function but you don't want to have make a big long list of function parameters for all possible options, especially when most of the time you only need a small number of required parameters. For example, if you have a function that sorts list, you could have additional options such as whether you want it in reverse sorted, or just the first n values, or some other feature. You could make those additional options supported by **kwargs. If you don't need them, they can be left out entirely. If you don't include them in the function call, it doesn't throw an error and just makes a zero length dictionary. When you do want those additional options, just include the ones you want.
@claffert
@claffert 2 года назад
and I have to add, I strongly disagree about it being "not extremely useful". A lot of the built in functions of Python use this very feature. And understanding it isn't just for understanding other people's code, but for understanding a lot of the official documentation. I for one have written a lot of pieces of code that were a bit dodgy with additional arguments that were only needed in some special cases that I later realized, "I should have just used **kwargs for that".
@flioink
@flioink 2 года назад
@@claffert Ok, but then your function has to check if those additional are present, no?
@claffert
@claffert 2 года назад
@@flioink Yes, it does require a bit of additional work when creating the function, but it provides you with more flexibility when calling it. Another common use-case for it is if you are creating a command line programs. A typical command line program often has standard use cases that involve a small number of options, but has large numbers of optional options and parameters that can be used. If you ever use command line programs then you should be very familiar with the pattern, and this is how you can implement it.
@fwily2580
@fwily2580 Год назад
So why is mGaetz a loser?
Далее
Why *ARGS and **KWARGS are Useful in Python
10:44
Просмотров 17 тыс.
Python: Lambda, Map, Filter, Reduce Functions
9:59
Просмотров 380 тыс.
Fake Horse Tries to Blend in with Pack of Horses
00:19
ЛИЗА - СПАСАТЕЛЬ😍😍😍
00:25
Просмотров 1,8 млн
Unpacking Operators in Python: What are * and **?
12:35
25 nooby Python habits you need to ditch
9:12
Просмотров 1,7 млн
But what are Python *ARGS & **KWARGS?
7:39
Просмотров 89 тыс.
WHAT are *args & **kwargs in Python?
7:35
Просмотров 5 тыс.
Top 18 Most Useful Python Modules
10:50
Просмотров 928 тыс.
This Is Why Python Data Classes Are Awesome
22:19
Просмотров 801 тыс.
Optional Arguments in Python With *args and **kwargs
10:44
Python Dictionary Comprehensions
13:03
Просмотров 1 тыс.