Python Tutorials - Itertools Playlist (chain, chain.from_iterable, zip_longest)

preview_player
Показать описание
Pythontutorials
#Pythonbeginnertutorials

In this video we will continue our exploration of the Python Itertools module.
In this video we will continue our exploration of the Python Itertools module.
These functions should prove very helpful in data wrangling.
You can find the notebook here in my Python stuff repository (or can be found eventually):

Рекомендации по теме
Комментарии
Автор

i wathced two in row great videos..one is this and the other was for permutations

oddnumber
Автор

You're a great teacher this was awesome, thank you

b.f.skinner
Автор

Why are you not uploading videos? You should know that though there are bazillion vids on youtube about Py ...there are barely few like you who knows the art of explanation. Please upload py projects....

mithunnambiar
Автор

l=[[1, 2, 4], [2, 4, 4], [1, 2]]
print(list(it.zip_longest(l, fillvalue=0)))
print(list(it.zip_longest(*l, fillvalue=0)))
please can you explain role of * in above code

geetanjalikudanekar