Тёмный

ALL 11 LIST METHODS IN PYTHON EXPLAINED 

Indently
Подписаться 178 тыс.
Просмотров 74 тыс.
50% 1

Every list method in Python explained in a single video! Did you know all of them? Let me know in the comment section :)
Learn more about copy(): • Your Lists Are Being C...
▶ Become job-ready with Python:
www.indently.io
▶ Follow me on Instagram:
/ indentlyreels
00:00 Intro
00:52 append()
01:14 clear()
01:26 copy()
02:48 count()
03:33 extend()
04:17 index()
04:55 insert()
06:05 pop()
06:49 remove()
07:14 reverse()
07:31 sort()
09:02 Conclusion

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

 

1 июн 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 77   
@dm_5000
@dm_5000 Год назад
Love the channel. FYI, the key in the .sort() method doesn't have to be a lambda function. Any function will work including built-ins and functions you write yourself. Both of your examples would have worked with people.sort(key=str.lower) and people.sort(key=len)
@Indently
@Indently Год назад
Very true, I often use lambdas in these situations to show that people can really implement their own custom functionality :)
@jimalix6270
@jimalix6270 2 месяца назад
Love your channel! Always interesting material, presented clearly and with good examples.
@loverboykimi
@loverboykimi Год назад
So handy list aspects. Many thanks.
@danielzima9414
@danielzima9414 Год назад
Sadly, this was really great. Concise, comprehensible, your voice friendly, warm and welcoming. Dig this vid a lot, might explore more.
@harmly2682
@harmly2682 Год назад
why sadly bro
@kingoreo7050
@kingoreo7050 11 месяцев назад
@@harmly2682they asked for tips at the end of the video, there are no extra tips he could add
@TheKimphoe
@TheKimphoe Год назад
Great video!
@hilkiahlavinier
@hilkiahlavinier Год назад
Really love your content. Can you please do a video on time and space complexity with python examples?
@Indently
@Indently Год назад
I'll look into it!
@BAMBAMBAMBAMBAMval
@BAMBAMBAMBAMBAMval Год назад
O(1) is 1 action O(log(n)) is wierd(search up "harvard cs50 phonebook" for example) O(n) is as many actions as iterables O(n²) is garbo Example you want to count from 0 to 10: O(1) = [10] O(log(n)) = [1, 2, 4, 8](10 wouldnt be part of the logarithm) O(n) = [1,2,3,4,5,6,7,8,9,10] O(n²) = [[1,2,3,4,5,6,7,8,9,10]1,[1,2,3,4,5,6,7,8,9,10]2,[1,2,3,4,5,6,7,8,9,10]3,[1,2,3,4,5,6,7,8,9,10]4] ect up to 10
@muheka20
@muheka20 Год назад
thank u for tutorial. greet from Indonesia 👍
@Alextv-tz7tw
@Alextv-tz7tw 28 дней назад
awesome!
@KRITIPANDIT-dc7yr
@KRITIPANDIT-dc7yr 8 месяцев назад
I am really thankful
@asharsumari9313
@asharsumari9313 Год назад
love ur vid. thanks
@KonradTamas
@KonradTamas 10 месяцев назад
Your content and you are Great !! What is this notation that you use tho -------> people: list[str] = [..., ....] Im new to this so, this is the first place I saw it and looks clean and informative ! Although if you add some intst there, it wont give you an error, so I dont get the [str] part, its just a hint to increase readability ?? Thx in advance.
@catherinemukunga1787
@catherinemukunga1787 Год назад
wow....thank you so much....
@girishkrishnayadav6693
@girishkrishnayadav6693 Год назад
Very nice superb❤❤❤
@cerealport2726
@cerealport2726 Год назад
nice list!
@-SHEESH-YIKES-
@-SHEESH-YIKES- Месяц назад
7:11 where i left of coding thx for the video its Awesome sauce
@michellegresser7389
@michellegresser7389 Год назад
Wie kann ich Wörter nach dem letzten Buchstaben Sortieren? Ich habe versucht wie immer eine Key Lambda usw. Zu setzten....und am Ende ein -1 gesetzt. Aber es es geht nicht
@surajprajapati3398
@surajprajapati3398 5 месяцев назад
Very nice class I am from india
@julyp9990
@julyp9990 7 месяцев назад
sir that was amazing teaching thank u
@brd-ch5108
@brd-ch5108 3 месяца назад
Basiji?
@jaquesadv
@jaquesadv Год назад
❤❤❤❤❤❤ Thanks a lot!
@dky_code
@dky_code Год назад
Great 👍
@JustMastermind
@JustMastermind Год назад
Which editor are you using? It looks very clean.
@Indently
@Indently Год назад
PyCharm
@RobinZuFALL
@RobinZuFALL Год назад
What are the advantages/ disadvantages of using list slicing instead of those list methods? I tend to use slicing allot as it is easier to remember for me.
@chrisvinciguerra4128
@chrisvinciguerra4128 Год назад
Slicing creates a new list, while most of these methods are performed on the list in place
@prudhvirajbandi5235
@prudhvirajbandi5235 5 месяцев назад
You super man❤
@user-zu9zc4rl4e
@user-zu9zc4rl4e 4 месяца назад
@8:37 sorting by people.sort(len(name)) why is 'Mario' , 'trump' , 'Luigi' the order as it is not alphabetical for length = 5? It seems to maintain original order for strings of length 5.
@MAlanThomasII
@MAlanThomasII 3 месяца назад
Correct. Python list sorting methods are stable, meaning that equal keys preserve the original order. The video was incorrect on that point.
@kvelez
@kvelez 10 месяцев назад
Great.
@realcontentgamer
@realcontentgamer Год назад
Wait why is the filename still 'pydec' today is January which means it needs to be 'pyjan'
@Indently
@Indently Год назад
It's going to get really confusing for people following the file name dates! Because that's when I created those projects ;)
@realcontentgamer
@realcontentgamer Год назад
@@Indently oh alright
@faaiidodiineed6924
@faaiidodiineed6924 Год назад
Hi, I hope you are fine. Thank you for your helpful and well detailed videos. I have one request: Can you provide us a video that explains how to convert tkinter multiple files with mysql database into .exe file. Please help.
@Indently
@Indently Год назад
I recommend breaking that problem down into smaller problems. It's very unlikely I will make a video so specific to that problem.
@cerealport2726
@cerealport2726 Год назад
Just wondering what sort of use cases there are for list.clear()? (I've never used it, but that doesn't mean very much!!)
@deei5130
@deei5130 Год назад
its just a little more memory efficient than list = [ ]
@cerealport2726
@cerealport2726 Год назад
@@deei5130 interesting, thanks, I might see what could do for me, I have cases where I cannot avoid lists with 4-5 million elements. Stupid proprietary data environment...
@TheMongole24
@TheMongole24 Год назад
I use lists in a game to create objects from an enemy class. The game runs on a loop and when the player dies, a new game is started and obviously the lists must be reset so that the new game is not already filled with enemies. I use list.clear() for that.
@cerealport2726
@cerealport2726 Год назад
@@TheMongole24 cool, thanks for the explanation!
@masterous
@masterous Год назад
what's the difference between list.clear() and list = []
@massy-3961
@massy-3961 Год назад
Clear is better memory wise
@masterous
@masterous Год назад
@@massy-3961 thanks
@lemmenmin7676
@lemmenmin7676 Год назад
i think list.clear() means that list = null; // work garbage collector, clean memory list = [] means that list = new list(); // new pointer in memory
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Год назад
Actually “l.clear()” would be more equivalent to “l[:] = []”
@oerthling
@oerthling 3 месяца назад
clear empties your existing list object, while = [] creates a new empty list object. If you don't care about the particular object reference value, the differences are negligible in practice.
@nakamuramizu..584
@nakamuramizu..584 2 месяца назад
Is extend() like concatenation
@Jqts369
@Jqts369 Месяц назад
Wait….is this supposed to be for beginners cause i have never use people: and list[str] to create a list…..how can i learn methods when i have to stop and go learn this? Idk why this is done when teaching new subjects, or diving into a beginner subject like lists
@azizbekbarotboyev8015
@azizbekbarotboyev8015 7 месяцев назад
please hepl : print("Sartirovka") print() s=int(input()) a=[] for i in range (s): a.append() a.sort() print(a) what' wrong?
@azizbekbarotboyev8015
@azizbekbarotboyev8015 7 месяцев назад
help*
@saaroopsai1063
@saaroopsai1063 Месяц назад
a.append(argument), you are missing the argument that's to be added to the list, in your case you are not appending anython to the list.
@atharva7616
@atharva7616 6 месяцев назад
Helicopter Helicopter 😂
@xuzm
@xuzm 9 месяцев назад
Can someone explain the way the code is written? Usually i do Create_list = [1,2,3,4] But his way is Create_list: list[str] = [1,2,3,4] Could someone explain this type of style?
@artorias3904
@artorias3904 7 месяцев назад
It's just type hinting, it isn't required, lists are the same
@drugho92
@drugho92 11 месяцев назад
Helicopeeer
@mtalhakhalid1679
@mtalhakhalid1679 4 месяца назад
Mostly you ise dunder in class
@IsaacGunananth-st7wz
@IsaacGunananth-st7wz 4 месяца назад
HI, why did you put "people: list[str]" wouldn't "people = [ "Mario", "Elon", "Trump" ]" do the job?
@Indently
@Indently 4 месяца назад
Because we are adults now, and Python offers beautiful tools to simulate static type checking :)
@craigslistbuslistingsofnor6494
@craigslistbuslistingsofnor6494 5 месяцев назад
you lost me at about the 10th elons
@lemmenmin7676
@lemmenmin7676 Год назад
TypeError: 'type' object is not subscriptable
@Indently
@Indently Год назад
I think you meant to paste that on Google search.
@lemmenmin7676
@lemmenmin7676 Год назад
@@Indently No. This does not work on all compilers.
@Indently
@Indently Год назад
Please explain what you mean.
@chaddaifouche536
@chaddaifouche536 Год назад
@@Indently He tried your code in an older version of Python and had this error because subscriptable types (like list[str]) have only been added since Python 3.9 (and you can get them with `from __future__ import annotations` if you have Python 3.7 or 3.8). He could use typing.List instead of list or just not write the annotations.
@callbettersaul
@callbettersaul Год назад
@@lemmenmin7676 Python doesn't have any compilers. Python is interpreted language.
@itsmaxim01
@itsmaxim01 Год назад
Array, not list.
@Indently
@Indently Год назад
Please be more specific about what you're trying to explain.
@chaddaifouche536
@chaddaifouche536 Год назад
@@Indently The class *list* in Python implements what's called arrays in almost every other language and data structures books (more precisely dynamic arrays, C++ call them vectors but that's an horrible choice all of its own). If you're teaching programming with Python, it's a constant pain to every so often catch yourself referring to lists when you meant arrays just because the chosen language didn't use the standard name. Not really important in most other contexts (a rose by any other name…).
@callbettersaul
@callbettersaul Год назад
@@chaddaifouche536 Your point being?
@chaddaifouche536
@chaddaifouche536 Год назад
@@callbettersaul I'm just explaining what maxim was referring to. All in all this video is exploring the list class in Python so I don't think this distinction is very important here but some people more accustomed to other languages do find the name irritating.
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Год назад
Python has an entirely separate “array” module. And then there are NumPy arrays.
@vladimirtsyapka3277
@vladimirtsyapka3277 Год назад
You can get rid of the lambda function in the sort method. people.sort(key=len) It works too.
Далее
5 Good Python Habits
17:35
Просмотров 340 тыс.
Python lists, sets, and tuples explained 🍍
15:06
Просмотров 223 тыс.
ЭТО ВООБЩЕ НЕ БОЛЬНО !
00:15
Просмотров 368 тыс.
ATEEZ(에이티즈) - 'WORK' Official MV
03:15
Просмотров 15 млн
ALL 11 Dictionary Methods In Python EXPLAINED
9:26
Просмотров 48 тыс.
10 Python Comprehensions You SHOULD Be Using
21:35
Просмотров 103 тыс.
Python Classes Tutorial #5 | Advanced Concepts
10:08
Просмотров 4,7 тыс.
ALL 47 STRING METHODS IN PYTHON EXPLAINED
23:34
Просмотров 113 тыс.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Просмотров 1,5 млн
5 Cool Python One-Liners
12:23
Просмотров 18 тыс.
PLEASE Use These 5 Python Decorators
20:12
Просмотров 90 тыс.
6 CLEAN Tips To IMPROVE Your Python Functions
9:55
Просмотров 69 тыс.
5 Useful Python Decorators (ft. Carberra)
14:34
Просмотров 83 тыс.