Python 101: Learn These MUST KNOW List Features

Поделиться
HTML-код
  • Опубликовано: 22 дек 2024

Комментарии • 114

  • @TechWithTim
    @TechWithTim  Год назад +2

    To learn programming and Python - check out Datacamp!
    💻 Learn Python - datacamp.pxf.io/Vmze3M
    💻 Learn Programming - datacamp.pxf.io/B0mJoW

    • @watsonmooya
      @watsonmooya Год назад

      Hey Tim...can you please create for me a video on how to deploy your python flask app on python anywhere.

    • @k4dr0n2
      @k4dr0n2 Год назад

      that was useful. now I respect you

  • @jameskelly3574
    @jameskelly3574 Год назад +4

    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.

  • @sulochandhungel
    @sulochandhungel Год назад +19

    Excellent video about lists. Hoping to see similar video for sets, dictionaries and tuples. Thank you!

  • @Cryp2nalist
    @Cryp2nalist Год назад +3

    This is a very well-taught tutorial as usual, engaging and easy to understand. Thank you.

  • @MatrixAbuz17
    @MatrixAbuz17 Год назад +7

    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)

  • @purvislewies3118
    @purvislewies3118 Год назад

    ...my brother you are my hero in this business...

  • @kapibara2440
    @kapibara2440 Год назад +1

    Super video Tim :) I was secretely wishing you would show the shuffle method in a list. It is really cool.

  • @JSDudeca
    @JSDudeca Год назад

    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.

  • @ShaneKluskowski716
    @ShaneKluskowski716 Год назад

    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.

  • @danielcrigan1301
    @danielcrigan1301 Год назад +4

    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.

  • @Canda-fh4xc
    @Canda-fh4xc Год назад

    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

  • @nitetoad
    @nitetoad Год назад +2

    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

  • @joshuaikem4461
    @joshuaikem4461 Год назад

    @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

  • @Raiden_Amani
    @Raiden_Amani Год назад

    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.

  • @JonibekHamroqulov-bf8gp
    @JonibekHamroqulov-bf8gp Год назад

    Very useful video. Please make a video about other data types (tuple, set, dictionary)

  • @paulthomas1052
    @paulthomas1052 Год назад

    Thanks - really useful breakdown of List functionality.

  • @Taher_M
    @Taher_M Год назад +1

    this guy: "Please learn"
    Meanwhile...
    My teacher: "You learn or don't learn, your choice"

  • @ByThisShallAllMenKnow
    @ByThisShallAllMenKnow Год назад +1

    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.

  • @kevlon1996
    @kevlon1996 Год назад

    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.

  • @et.sachin
    @et.sachin Год назад +1

    Great video Tim! Please do the same for other data structures.

  • @DanielBinoy-j7z
    @DanielBinoy-j7z Год назад +3

    Can you make a video about python library that you should know beginner please

  • @Ebtesambehnam
    @Ebtesambehnam Год назад

    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

  • @koekienator
    @koekienator Год назад

    Nice 101! Can you do the same for dictionaries? Dict comprehension feels a bit like 4d chess compare to list comprehension.

  • @samoylov1973
    @samoylov1973 Год назад +1

    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 Год назад +1

      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.)

  • @joshuaikem4461
    @joshuaikem4461 Год назад

    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

  • @AIWorld-o7v
    @AIWorld-o7v Год назад

    i am your new scriber your lecture is awesome wonderful keep it up

  • @magonazz1
    @magonazz1 Год назад

    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.

  • @Syed-A-Rizvi
    @Syed-A-Rizvi 7 месяцев назад

    thank you bhai!!!!👍

  • @Sinke_100
    @Sinke_100 Год назад

    So detailed and well explained 🐍

  • @SuXiiColdHand
    @SuXiiColdHand Год назад

    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?

  • @marco.nascimento
    @marco.nascimento Год назад

    Great video!

  • @Dubai_life_
    @Dubai_life_ Год назад

    Thank you a lot

  • @thabangraykutumane6639
    @thabangraykutumane6639 Год назад

    mind doing while loops and for loops please

  • @48_subhambanerjee22
    @48_subhambanerjee22 Год назад +1

    For those who is asking which ide is that.. its just vscode...

  • @munivoltarc
    @munivoltarc Год назад

    can you do comprehensive pandas on stock market data many are eagerly waiting to see this kind of video

  • @growth_mindset_on
    @growth_mindset_on Год назад

    Just Great!

  • @ni_r4970
    @ni_r4970 Год назад

    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!

  • @shaikusman536
    @shaikusman536 Год назад

    Good ....cou;ld be better if you can tell the practicle use cases of concepts........thanks...from INDIA

  • @tradeyourlifestyle2604
    @tradeyourlifestyle2604 Год назад

    Can you explain more on career services in Course Careers?

  • @datpham2482
    @datpham2482 Год назад

    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 ?

  • @faisalhussain1045
    @faisalhussain1045 Год назад

    What is the code editor that you are using ?

  • @SAsquirtle
    @SAsquirtle Год назад

    PLEASE MAKE ONE FOR DICTS

  • @TheDhac
    @TheDhac 11 месяцев назад

    Is this some of SQL built into python?

  • @johncastillo6574
    @johncastillo6574 Год назад

    I’m embarrassed to say but this is more advanced than my capabilities.
    Where does a complete beginner start?

  • @ImTheReal
    @ImTheReal Год назад

    Subscribed

  • @Moses_42
    @Moses_42 Год назад

    Hey Tim is there any difference between your Software Dev course in Algo Expert and Course Careers?

    • @TechWithTim
      @TechWithTim  Год назад

      Yes this is much more in depth

    • @Moses_42
      @Moses_42 Год назад

      Thank you
      @@TechWithTim

  • @ivannaumovets2066
    @ivannaumovets2066 Год назад

    Thank you, one more repeat with your video makes memory stronger.

  • @rtr195807
    @rtr195807 Год назад

    Only thanks!

  • @CodeWithDee
    @CodeWithDee Год назад

    I'm in Ghana. Can I also take the course and get a job after graduation?

  • @reqssss
    @reqssss 12 дней назад

    What keyboard is that

  • @tom19_06
    @tom19_06 Год назад

    Awesome tutorial!

  • @Zancb
    @Zancb Год назад +1

    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 Год назад

      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.

  • @henryvasquez1814
    @henryvasquez1814 Год назад

    6:22

  • @blueocean5388
    @blueocean5388 Год назад

    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.👍🏾

  • @avalagum7957
    @avalagum7957 Год назад

    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 Год назад

      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.

  • @4783rt9
    @4783rt9 Год назад

    Great

  • @danieljoaquinsegoviacorona1734

    thank you sir!

  • @varunsaproo4120
    @varunsaproo4120 Год назад

    Can anyone explain lst[-5:-5] = [999]?

    • @vio-noob_6737
      @vio-noob_6737 Год назад +1

      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)

  • @ugib8377
    @ugib8377 Год назад

    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 Год назад +2

      This is your typical Monokai color scheme. There are variations on it. I believe you can find it as an extension.

    • @ugib8377
      @ugib8377 Год назад

      @@elatedbento much thanks. I'll check it out!

  • @AbdullahMubeenA.M
    @AbdullahMubeenA.M 11 месяцев назад

    how to remember all of these?

  • @garrettsmith315
    @garrettsmith315 Год назад

    Awesome, iterators and generators next?

  • @dakoderii4221
    @dakoderii4221 Год назад

    .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

  • @LAMIDI131
    @LAMIDI131 Год назад

    Can I get an English translation

  • @THARUNGANAPATHI
    @THARUNGANAPATHI Год назад

    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

  • @borneoviral6379
    @borneoviral6379 Год назад

    what is the _ where can I learn more about it

  • @relytheone853
    @relytheone853 Год назад

    How can I actually get a job by programming in Python?

  • @jorgeraymason
    @jorgeraymason Год назад

    Completely off topic, but I wonder if Tim was a bully in high school.

  • @bentaylor25
    @bentaylor25 Год назад

    I got [8, 0, 'c', 'b', 'a'] - not 100% sure though..

    • @bentaylor25
      @bentaylor25 Год назад

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

  • @UE5tutorial
    @UE5tutorial Год назад +1

    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 Год назад

    Alphabet doesn't know the difference between "tee" and "dee", so the captions say "LSD" instead of "LST".

  • @rexmgwezane9409
    @rexmgwezane9409 Год назад

    First minute gang

  • @ericbroun4657
    @ericbroun4657 Год назад

    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    Hello from user 1

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    Hello, world

  • @mrcodercodes7684
    @mrcodercodes7684 Год назад +33

    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 Год назад +2

      Ya , Even i agree . Cm'on tim make some new series .

    • @yapnog603
      @yapnog603 Год назад +5

      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 Год назад +1

      Agree, I don't enjoy this content anymore

    • @TheMoonManExperience
      @TheMoonManExperience Год назад +14

      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 RUclips 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 RUclips 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 Год назад +2

      ​@@TheMoonManExperienceyes , I respect him for that . Even I would credit him for my programming journey. Just wanted to give some feedback :)

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    xyz...

  • @PatrickSteil
    @PatrickSteil Год назад

    My guess is that it prints a list. Lol. No clue.

  • @bobtheoutbuilder8552
    @bobtheoutbuilder8552 Год назад

    I got [999, 8, 'c', 'b', 'a'], Idk where my 6 went haha.

  • @EvilCherry3
    @EvilCherry3 Год назад

    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 Год назад

      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 Год назад +1

      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. :)

  • @ahmedyamany5065
    @ahmedyamany5065 Год назад +2

    Free palastine

  • @danieljoaquinsegoviacorona1734

    it wasn't the syntax, for me, it was the zip thing, and the content of the zipped [ :: -1 ] hahaha shenanigans

  • @danieljoaquinsegoviacorona1734

    lol, imagine if they did placed -0 to call the last index of the array lmao

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    Hello from user 1

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    Hello from user 1

  • @Alibaloch2013
    @Alibaloch2013 Год назад

    Hello from user 1