Тёмный
No video :(

Python 101: Learn These MUST KNOW List Features 

Tech With Tim
Подписаться 1,6 млн
Просмотров 91 тыс.
50% 1

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

 

21 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 115   
@TechWithTim
@TechWithTim 9 месяцев назад
Check out my FREE introduction to Software Development course to learn how to break into tech and make $80k+/year! techwithtim.net/dev
@watsonmooya
@watsonmooya 9 месяцев назад
Hey Tim...can you please create for me a video on how to deploy your python flask app on python anywhere.
@k4dr0n2
@k4dr0n2 8 месяцев назад
that was useful. now I respect you
@sulochandhungel
@sulochandhungel 9 месяцев назад
Excellent video about lists. Hoping to see similar video for sets, dictionaries and tuples. Thank you!
@jameskelly3574
@jameskelly3574 8 месяцев назад
I learned way more than expected in such a short amount of time. Just started Python in my CS program and was looking for extra guidance online to supplement schoolwork. Subbing now! Thanks.
@MatrixAbuz17
@MatrixAbuz17 9 месяцев назад
Great video for beginners. Should make a video on specific libraries that are handy for specific data types aimed for more intermediate users too (e.g., built-in 'slice', or 'insort' from bisect for list types, 'nested_lookup' from nested_lookup for dictionaries)
@Cryp2nalist
@Cryp2nalist 9 месяцев назад
This is a very well-taught tutorial as usual, engaging and easy to understand. Thank you.
@purvislewies3118
@purvislewies3118 9 месяцев назад
...my brother you are my hero in this business...
@kapibara2440
@kapibara2440 9 месяцев назад
Super video Tim :) I was secretely wishing you would show the shuffle method in a list. It is really cool.
@nitetoad
@nitetoad 9 месяцев назад
Okay here is my attempt! n1 is list a of even numbers, n2 is a list of odd numbers. on line 4, you are making a list of those even and odd numbers as zipped. on line 6, you are collecting the numbers from this list starting from index 0 and going backwards by -1 step. Reversed order? on line 8, you are the odd numbers in reversed order to the end of the zipped_2 list on line 10, you are replacing a number with 999 at position -5 on line 12, you are replacing three numbers with a, b, c from position 1, 2, 3 on line 14, you are sorting the n1 list in reverse order if they are a number they will be sorted first. finally printing the results
@kevlon1996
@kevlon1996 8 месяцев назад
One thing that all these tutorials lack is the fact that a LIST in Python is equivalent to an ARRAY in most other coding languages.
@JSDudeca
@JSDudeca 8 месяцев назад
I thought I knew it all about lists but I got a couple new things with this. Definitely will be sending this to all the N00bs.
@Taher_M
@Taher_M 8 месяцев назад
this guy: "Please learn" Meanwhile... My teacher: "You learn or don't learn, your choice"
@48_subhambanerjee22
@48_subhambanerjee22 9 месяцев назад
For those who is asking which ide is that.. its just vscode...
@danielcrigan1301
@danielcrigan1301 9 месяцев назад
Great content Tim! Thank you for your effort in creating this type of content for us! It's a good reference video to refresh the knowledge on the lists.
@ShaneKluskowski716
@ShaneKluskowski716 9 месяцев назад
I got [999, 8]. I had to guess what the isinstance function did in the end. Assuming it filters out anything that isn't and integer, otherwise it would be [999, 8, 'a',' 'b', 'c'] (I think). Great video.
@paulthomas1052
@paulthomas1052 9 месяцев назад
Thanks - really useful breakdown of List functionality.
@et.sachin
@et.sachin 9 месяцев назад
Great video Tim! Please do the same for other data structures.
@user-jc5rj7fm3n
@user-jc5rj7fm3n 9 месяцев назад
Can you make a video about python library that you should know beginner please
@samoylov1973
@samoylov1973 9 месяцев назад
Thank you! Waiting for more such content. How about "Sorting lists"? For LIST construction: one can use unpacking like this: >>> lst = [*range(11)] And for immutability of tuples - it is a disputable theme. Say we have a tuple: >>> tpl = 1, 2, 3 >>> tpl += 4, >>> print(tpl) # (1, 2, 3, 4) # Yeap, id(tpl) in these cases will be different. These are different objects. But by construction looks like we can modify tuples )). Another example: >>> tpl_lst = 1, 2, 3, [4, 5] # check for it's id -- id(tpl_lst) >>> tpl_lst[3].append(6) >>> print(tpl_lst) # check for it's id again # (1, 2, 3, [4, 5, 6]) # and in this case ids of tpl_lst will be the same. It will be the same object to your computer.
@KEANMentor
@KEANMentor 9 месяцев назад
I don't think it is disputable, tuples are still immutable. Using the += operator just creates a totally new object in the background. I admit the second is strange indeed, the answer is that mutable object stored/pass by reference in Python. (You can use copy() and deepcopy() to break that reference if you need to.)
@Raiden_Amani
@Raiden_Amani 9 месяцев назад
Thank you so much, even when one becomes very well versed in programming, there are always a few tiny things that one can miss out that may hinder performance and usefulness of a langauge.
@Sinke_100
@Sinke_100 9 месяцев назад
So detailed and well explained 🐍
@ByThisShallAllMenKnow
@ByThisShallAllMenKnow 9 месяцев назад
Thank you very much for this. Knowing that setting a list equal to another is by reference allows me to link my understanding of C pointers to Python now. This had confused me for quite some time.
@JonibekHamroqulov-bf8gp
@JonibekHamroqulov-bf8gp 9 месяцев назад
Very useful video. Please make a video about other data types (tuple, set, dictionary)
@Syed-A-Rizvi
@Syed-A-Rizvi 3 месяца назад
thank you bhai!!!!👍
@bunyodzulqaynarov
@bunyodzulqaynarov 9 месяцев назад
Just Great!
@marco.nascimento
@marco.nascimento 9 месяцев назад
Great video!
@johncastillo6574
@johncastillo6574 8 месяцев назад
I’m embarrassed to say but this is more advanced than my capabilities. Where does a complete beginner start?
@magonazz1
@magonazz1 9 месяцев назад
Bro, I love your videos a lot, you teach everything well, I wish I was in the position to buy your course, but am financially disadvantages now, however, in the mean time, is there any chance you could share the link to your iconic soundtrack that plays at the end of the video? It really helps me focus more when am practicing code, am a beginner in software engineering, and am learning things off of youtube videos like yours, and progressing one step at a time.
@user-rw4ew6wh1j
@user-rw4ew6wh1j 9 месяцев назад
i am your new scriber your lecture is awesome wonderful keep it up
@Dubai_life_
@Dubai_life_ 8 месяцев назад
Thank you a lot
@thewestcoastwizard1
@thewestcoastwizard1 9 месяцев назад
Greetings,from Mr Axel Vasa the west coast wizard himself. I have got something essential to share with you. Let's keep spreading much love and positive light to the world. GOD bless you. 💯❤️🙏
@Canda-fh4xc
@Canda-fh4xc 9 месяцев назад
Do you have a video about how to find out if the checkbox is checked or not using Flask? (The IDs and the Values are dynamic from the database) Thank you
@Ebtesambehnam
@Ebtesambehnam 9 месяцев назад
hey Tim, thanks for you all videos you are so inspiring for me im learning django online, but i get tired of it so soon, its like a loop for me getting tired, break, starting again, getting tired its not enjoyable for me but i have to learn it please give me advice , what can i do to finish my course
@shaikusman536
@shaikusman536 9 месяцев назад
Good ....cou;ld be better if you can tell the practicle use cases of concepts........thanks...from INDIA
@koekienator
@koekienator 8 месяцев назад
Nice 101! Can you do the same for dictionaries? Dict comprehension feels a bit like 4d chess compare to list comprehension.
@nicolar4970
@nicolar4970 9 месяцев назад
This was great but you did not cover lambda functions showed in the first slide! As a total beginner with python for research needs those lambda functions are much less transparent than other things. Thanks for list comprehension though, very effective brief explanation!
@tradeyourlifestyle2604
@tradeyourlifestyle2604 9 месяцев назад
Can you explain more on career services in Course Careers?
@ivannaumovets2066
@ivannaumovets2066 9 месяцев назад
Thank you, one more repeat with your video makes memory stronger.
@night23412
@night23412 9 месяцев назад
PLEASE MAKE ONE FOR DICTS
@rtr195807
@rtr195807 9 месяцев назад
Only thanks!
@ImTheReal
@ImTheReal 8 месяцев назад
Subscribed
@thabangraykutumane6639
@thabangraykutumane6639 9 месяцев назад
mind doing while loops and for loops please
@joshuaikem4461
@joshuaikem4461 9 месяцев назад
@TechWithTim ......Hello Tim!...Thanks for video you've made i appreciate so much.......Does the Coursecareer programme apply to every country......I am a Nigerian in Africa and all i can here is North America related settings
@munivoltarc
@munivoltarc 9 месяцев назад
can you do comprehensive pandas on stock market data many are eagerly waiting to see this kind of video
@joshuaikem4461
@joshuaikem4461 9 месяцев назад
Hello Tim!....Does the Coursecareer programme apply to every country......I am a Nigerian in Africa and all i can here is North America related settings
@Zancb
@Zancb 9 месяцев назад
Constructive criticism - please don't use "LST" (lowercase) as a variable for a list. 1. "lst" in monospace looks like "1st" - the lowercase L looks like a 1. 2. Try to avoid using variables that are so close to a keyword. 3. Tell your audience not to use keywords as a variable, or else Python go boom. Thanks, Tim! Always love your content.
@Zancb
@Zancb 9 месяцев назад
And to provide a solution, try to use something like "my_list1" and "my_list2". Semantically it infers that the variable is defined and owned by "you" in the memory space.
@tom19_06
@tom19_06 9 месяцев назад
Awesome tutorial!
@user-dj8ws1mc6f
@user-dj8ws1mc6f 9 месяцев назад
Great
@danieljoaquinsegoviacorona1734
@danieljoaquinsegoviacorona1734 8 месяцев назад
thank you sir!
@SuXiiColdHand
@SuXiiColdHand 9 месяцев назад
Hi, i didnt get what the problem is with the list being a default parameter. i am very new to pyhton and coding in general. did i get it right that, if you change the list in the function, that everytime you call the function, it executes the change because... well its in the function so it does what its supposed to do, right?
@henryvasquez1814
@henryvasquez1814 9 месяцев назад
6:22
@TheDahc1
@TheDahc1 7 месяцев назад
Is this some of SQL built into python?
@datpham2482
@datpham2482 9 месяцев назад
anyone know how to justify the TERMINAL window to just show only the result rather than the whole mixture of stuff like long location of the file ?
@garrettsmith315
@garrettsmith315 9 месяцев назад
Awesome, iterators and generators next?
@CodeWithDee
@CodeWithDee 8 месяцев назад
I'm in Ghana. Can I also take the course and get a job after graduation?
@blueocean5388
@blueocean5388 9 месяцев назад
Hey bro. Can you please pronounce what your type in the screen? I mean when you do the parentheses or quotes? I am visually disabled and I’m trying to keep up with you, but I get lost. Thank you very much.👍🏾
@relytheone853
@relytheone853 9 месяцев назад
How can I actually get a job by programming in Python?
@faisalhussain1045
@faisalhussain1045 9 месяцев назад
What is the code editor that you are using ?
@mohammedmizankhan7290
@mohammedmizankhan7290 9 месяцев назад
Pycharm
@THARUNGANAPATHI
@THARUNGANAPATHI 9 месяцев назад
def func(lst = [1,2]): lst.append(100) return lst lst1 = func() print (lst1) lst2 = func() print (lst2) lst3 = func() print (lst3) Result: [1, 2, 100] [1, 2, 100, 100] [1, 2, 100, 100, 100] [Finished in 0.2s] This is my result. But how you got like the following. May be I am wrong. [1, 2, 100, 100, 100] [1, 2, 100, 100, 100] [1, 2, 100, 100, 100] Correct me if i am wrong
@AbdullahMubeenA.M
@AbdullahMubeenA.M 7 месяцев назад
how to remember all of these?
@Moses_42
@Moses_42 9 месяцев назад
Hey Tim is there any difference between your Software Dev course in Algo Expert and Course Careers?
@TechWithTim
@TechWithTim 9 месяцев назад
Yes this is much more in depth
@Moses_42
@Moses_42 9 месяцев назад
Thank you @@TechWithTim
@varunsaproo4120
@varunsaproo4120 9 месяцев назад
Can anyone explain lst[-5:-5] = [999]?
@vio-noob_6737
@vio-noob_6737 8 месяцев назад
Am a little late, but when assigning values using slice notation they have to be an iterable, hence the brackets around the 999. If you don't have the brackets it'll throw you a TypeError. Since it is using the slice -5:-5, you are assigning to the -5th index. Since it is only one index, you can just do the same operation as lst[-5] = 999 (lst[0] = 999 also works since index 0 is the same as -5 for this example)
@rexmgwezane9409
@rexmgwezane9409 9 месяцев назад
First minute gang
@jorgeraymason
@jorgeraymason 9 месяцев назад
Completely off topic, but I wonder if Tim was a bully in high school.
@dakoderii4221
@dakoderii4221 9 месяцев назад
.snap() break list in half, return halves in a tuple .crackle() remove every other item, return new list of those items .pop() remove last item and return
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
Hello from user 1
@UE5tutorial
@UE5tutorial 9 месяцев назад
i love you vids please run my code on your one of your vidios import time a1 = 1 time.sleep(a1) print(a1) print("it work's") it's not that good but it dose work im real new to python and made it myself! :)
@CTimmerman
@CTimmerman 9 месяцев назад
Alphabet doesn't know the difference between "tee" and "dee", so the captions say "LSD" instead of "LST".
@LAMIDI131
@LAMIDI131 9 месяцев назад
Can I get an English translation
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
Hello, world
@bentaylor25
@bentaylor25 9 месяцев назад
I got [8, 0, 'c', 'b', 'a'] - not 100% sure though..
@bentaylor25
@bentaylor25 9 месяцев назад
Assuming I typed it right it's [999, 8, 6, 'c', 'b', 'a'] - and here's hoping that none of us ever need to work with code like this :)
@avalagum7957
@avalagum7957 9 месяцев назад
Is there any way to force a data type when we declare a collection in Python? i.e. if I declare a list, I have to tell what data type that the list elements are of.
@justsayin...1158
@justsayin...1158 9 месяцев назад
Yes, you can do so using the array module from the standard library. Although arrays can only store numeric values and characters, so they aren't the exact same.
@ugib8377
@ugib8377 9 месяцев назад
What color scheme are you using in VScode? I love the high contrast stuff, and these color combos look better than my current. Thanks for the video too. I learned quite a bit!
@elatedbento
@elatedbento 9 месяцев назад
This is your typical Monokai color scheme. There are variations on it. I believe you can find it as an extension.
@ugib8377
@ugib8377 9 месяцев назад
@@elatedbento much thanks. I'll check it out!
@ericbroun4657
@ericbroun4657 8 месяцев назад
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
xyz...
@mrcodercodes7684
@mrcodercodes7684 9 месяцев назад
Og here , Idk what has happen to your channel, Now there is definitely decrease in engagement . You should try going back to old ways . I used to watch your channel for Discord bot and flask app and what not . Try Making a series on some trending thing again . Like I would love a series where you make a evolution simulator or a journal app which after 20-30 days writes a AI generated book on you and what your wrote in journal .You get the gist . Make a series , it will keep the engagement and we get old tim back :)
@altaccount3712
@altaccount3712 9 месяцев назад
Ya , Even i agree . Cm'on tim make some new series .
@yapnog603
@yapnog603 9 месяцев назад
I got a job using this channel as one of my main sources of materials/help and now I'm busy with life 😢😅
@yohanpablos6861
@yohanpablos6861 9 месяцев назад
Agree, I don't enjoy this content anymore
@TheMoonManExperience
@TheMoonManExperience 9 месяцев назад
I would say his new series is the “ Introduction to Software Development “ as it’s a perfect way for anyone new like myself to enroll in the possibility of getting a job at the end. He’s got plenty of old content for anyone new to go back & watch. He did mention his latest & greatest work was the course he created. Which lets me know he put endless hours into creating it. The newest releases on his channel are amazing in my opinion when you factor in how much work goes into making RU-vid videos along with having a day job & other side projects. Just my two cents LoL I’ve only been around for two months but I can tell you that building up a RU-vid channel this large is not easy. The fact he has been able to teach so many this one language but do it a millions times in a millions different ways is beyond impressive.
@mrcodercodes7684
@mrcodercodes7684 9 месяцев назад
​@@TheMoonManExperienceyes , I respect him for that . Even I would credit him for my programming journey. Just wanted to give some feedback :)
@borneoviral6379
@borneoviral6379 9 месяцев назад
what is the _ where can I learn more about it
@PatrickSteil
@PatrickSteil 8 месяцев назад
My guess is that it prints a list. Lol. No clue.
@bobtheoutbuilder8552
@bobtheoutbuilder8552 9 месяцев назад
I got [999, 8, 'c', 'b', 'a'], Idk where my 6 went haha.
@ahmedyamany5065
@ahmedyamany5065 9 месяцев назад
Free palastine
@EvilCherry3
@EvilCherry3 9 месяцев назад
8:00 Does this ever serve a purpose ? It looks like a useless feature. If i already have a reference to an object i don't see any case where i will need a different name to call that same reference ever. It looks more annoying than useful.
@eddo4life
@eddo4life 9 месяцев назад
Imagine that you need to remove elements from different lists, such as employee and student lists. Each list contains multiple elements represented as dictionaries, either for students or employees. When you want to delete an employee, you might consider creating a method like 'remove_employee(id)' that searches for the specific employee and removes it from the employee list instance. Similarly, for removing a student, you would need to create another function, 'remove_student(id),' which follows the same approach. However, this approach is not ideal. Instead, you can streamline the process by using a single function that accepts the list instance and the ID as parameters. Let's call this function 'remove(lst, id).' Now, when you want to delete an employee, simply call 'remove' with the employee list and the employee's ID. You can do the same for students or any other entity with the same data structure, ensuring a more efficient and maintainable solution.
@EvilCherry3
@EvilCherry3 9 месяцев назад
Thank you a lot. :) @@eddo4life I will have to test this out myself in order to fully understand how it works, but i think i vaguely get the idea already. :)
@danieljoaquinsegoviacorona1734
@danieljoaquinsegoviacorona1734 8 месяцев назад
it wasn't the syntax, for me, it was the zip thing, and the content of the zipped [ :: -1 ] hahaha shenanigans
@danieljoaquinsegoviacorona1734
@danieljoaquinsegoviacorona1734 8 месяцев назад
lol, imagine if they did placed -0 to call the last index of the array lmao
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
Hello from user 1
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
Hello from user 1
@Alibaloch2013
@Alibaloch2013 9 месяцев назад
Hello from user 1
Далее
Python 101: Learn These 5 Must-Know HIDDEN Features
16:38
10 Python Comprehensions You SHOULD Be Using
21:35
Просмотров 140 тыс.
Курск - врата Рая / Новости / Шпак
1:14:35
This Is Why Python Data Classes Are Awesome
22:19
Просмотров 801 тыс.
Python lists, sets, and tuples explained 🍍
15:06
Просмотров 260 тыс.
Python 101: Learn the 5 Must-Know Concepts
20:00
Просмотров 1,1 млн
10 Python Shortcuts You Need To Know
27:27
Просмотров 293 тыс.
10 ULTIMATE Python Tips 🔥
16:42
Просмотров 65 тыс.
5 Mini Python Projects - For Beginners
1:41:08
Просмотров 2,8 млн
How To Practice Programming So You Actually Get Good
15:46
Python As Fast as Possible - Learn Python in ~75 Minutes
1:19:41
SWE Stop Learning - The Rise Of Expert Beginners
49:09
Просмотров 292 тыс.
Learn Python With This ONE Project!
55:04
Просмотров 1,7 млн