Python 101: Learn the 5 Must-Know Concepts

Sdílet
Vložit
  • čas přidán 4. 05. 2024
  • See NordPass Business in action now with a 3-month free trial here nordpass.com/techwithtim with code techwithtim
    If you're interested in becoming a developer that writes any type of code in python, then you need to understand these 5 Python concepts. In today's video, I'm going to break down 5 key Python concepts for any aspiring developer. Master Python, elevate your skills.
    💻 Master Blockchain and Web 3.0 development today by using BlockchainExpert: 🔗 algoexpert.io/blockchain (Use code "tim" for a discount!)
    💻 Accelerate your software engineering career with ProgrammingExpert: 🔗 programmingexpert.io/tim (Use code "tim" for a discount!)
    🎬 Timestamps
    00:00 | Introduction
    00:38 | Sponsor
    01:43 | Mutable vs Immutable
    06:20 | List Comprehensions
    08:22 | Function Argument & Parameter Types
    14:44 | if _name_ == "__main__"
    16:34 | Global Interpreter Lock (GIL)
    ◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
    👕 Merchandise: 🔗 teespring.com/stores/tech-wit...
    📸 Instagram: 🔗 / tech_with_tim
    📱 Twitter: 🔗 / techwithtimm
    🔊 Discord: 🔗 / discord
    📝 LinkedIn: 🔗 / tim-ruscica-82631b179
    🌎 Website: 🔗 techwithtim.net
    📂 GitHub: 🔗 github.com/techwithtim
    One-Time Donations: 💲 www.paypal.com/donate?hosted_...
    Patreon: 💲 / techwithtim
    ◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️◼️
    ⭐️ Tags ⭐️
    - Tech With Tim
    - Top 5 Python Concepts
    - Master Python
    ⭐️ Hashtags ⭐️
    #techwithtim #top5python #pythonprogramming

Komentáře • 568

  • @TechWithTim
    @TechWithTim  Před 11 měsíci +29

    Start your career in Software Development and make $80k+ per year! coursecareers.com/a/techwithtim?course=software-dev-fundamentals

    • @XrayTheMyth23
      @XrayTheMyth23 Před 11 měsíci +3

      Your timestamps are mislabeled for if_name and function types.

    • @animeshmukherjee3676
      @animeshmukherjee3676 Před 11 měsíci +3

      Hi Tim please make a video about GIL in Python and mulithreading in Python.

    • @pinnaclemindset8985
      @pinnaclemindset8985 Před 11 měsíci

      what do you think about Mojo programming language

    • @shashwatpatil4831
      @shashwatpatil4831 Před 11 měsíci

      please make a video about GIL and why does python not support multithreading

    • @aligharaibeh3761
      @aligharaibeh3761 Před 11 měsíci

      Mojo programming language is super set of python and it is 35000x faster than python

  • @Gaurav-gc2pm
    @Gaurav-gc2pm Před 5 měsíci +18

    Working as a python dev and in my 1 year of practicing python... no one ever explained this well... you're a GEM TIM

  • @TohaBgood2
    @TohaBgood2 Před 10 měsíci +197

    The GIL can be bypassed by using parallelism which offers about the same capabilities as threads in other languages. This is more of a naming convention issue rather than an actual thing that you can't do in Python. Python threads are still useful for IO and similar async tasks, but they're simply not traditional threads.
    It's important to highlight these kinds of things even for beginners so that they don't go out into the world thinking that you can't do parallelism in Python. You absolutely can. It's just called something else.

    • @umutsen2290
      @umutsen2290 Před 10 měsíci +2

      Hello dear sir,
      You mentioned that 'It's just called something else', and what came up to my mind is that another threading library named _thread which is meant for low level threading and also multiprocess library that allows users to run multiple python clients. Am I correct or did you mean something else?

    • @Joel-pl6lh
      @Joel-pl6lh Před 9 měsíci +4

      Thank you, that was a bit misleading. How can you do "multithreading" in python then?

    • @TohaBgood2
      @TohaBgood2 Před 9 měsíci +19

      @@Joel-pl6lh The library of choice for actual parallel processing in Python is _multiprocessing_
      It has a similar interface, but gives you actual parallel computing on different CPU cores.

    • @Joel-pl6lh
      @Joel-pl6lh Před 9 měsíci +5

      ​@@TohaBgood2 That's what I found too, thank you because I'd have thought it's not possible. I wonder why he included this in the video?

    • @ruotolovincenzo94
      @ruotolovincenzo94 Před 9 měsíci +4

      Agree, in the GIL part of the video there is a lot of confusion since multi-threading is mixed with multi-processing, and not a clear definition has been provided, which contributes to confuse who approaches to these concepts.
      It simply does not exist a multi-threading code, in all the coding languages, that executes threads at the same time

  • @zecuse
    @zecuse Před 11 měsíci +38

    Some details skipped about *args and **kwargs:
    A forward slash "/" can be used to force parameters to be positional only, thereby making them required when calling and not by name. So, def function(a, b, /, c, d, *args, e, f = False, **kwargs) means a and b cannot have default values, are required to be passed when calling function, AND can't be supplied with their parameter names. e must also be supplied with a value when called.
    Naming the first * is not required. Doing so simply allows the function to take an arbitrary amount of positional parameters. def function(a, b, /, c, d, *, e, f = False) would require at least 5 arguments (no more than 6) passed to it: a and b are required, c and d are also required and optionally passed as keywords, e must be passed as keyword, f is completely optional, and nothing else is allowed.
    / must always come before *. * must always come before **kwargs. **kwargs must always be last if used.

    • @timo_b3
      @timo_b3 Před 11 měsíci

      thanks

    • @kmn1794
      @kmn1794 Před 10 měsíci +1

      I didn't know the kwonly args after *args didn't need a default.
      The posonly arg names can also be used as kwarg keys when the signature accepts kwargs.

    • @user-sj9xq6hb9p
      @user-sj9xq6hb9p Před 7 měsíci

      you can also use "*" to force but I the more apt way is to use "/" I guess

    • @hamzasarwar2656
      @hamzasarwar2656 Před 7 měsíci +2

      Your description is accurate and provides a clear understanding of the use of /, *, and **kwargs in function parameter definitions in Python. Let's break down the key points:
      / (Forward Slash):
      When you use / in the function parameter list, it indicates that all parameters before it must be specified as positional arguments when calling the function.
      This means that parameters before the / cannot have default values and must be passed in the order defined in the parameter list.
      Parameters after the / can still have default values and can be passed either as keyword arguments or positional arguments.
      * (Asterisk):
      When you use * in the function parameter list, it marks the end of positional-only arguments and the start of keyword-only arguments.
      Parameters defined after * must be passed as keyword arguments when calling the function. They can have default values if desired.
      **kwargs (Double Asterisks):
      **kwargs allows you to collect any additional keyword arguments that were not explicitly defined as parameters in the function signature.
      It must always be the last element in the parameter list if used.
      Here's an example function that demonstrates these concepts:
      python
      Copy code
      def example_function(a, b, /, c, d, *, e, f=False, **kwargs):
      """
      a and b must be passed as positional arguments.
      c and d can be passed as positional or keyword arguments.
      e must be passed as a keyword argument.
      f is optional and has a default value.
      Any additional keyword arguments are collected in kwargs.
      """
      print(f"a: {a}, b: {b}, c: {c}, d: {d}, e: {e}, f: {f}")
      print("Additional keyword arguments:", kwargs)
      # Valid calls to the function:
      example_function(1, 2, 3, 4, e=5)
      example_function(1, 2, c=3, d=4, e=5)
      example_function(1, 2, 3, 4, e=5, f=True, x=10, y=20)
      # Invalid calls (will raise TypeError):
      # example_function(a=1, b=2, c=3, d=4, e=5) # a and b must be positional
      # example_function(1, 2, 3, 4, 5) # e must be passed as a keyword
      By using /, *, and **kwargs in your function definitions, you can create more structured and expressive APIs and enforce specific calling conventions for your functions.

    • @jcwynn4075
      @jcwynn4075 Před 13 dny

      He definitely should've included this info in the video. I've learned this before but am not a professional programmer so haven't used it, so seeing it in this video would help non-experts like me.
      Also, this can be inferred from the explanations above, but maybe still worth stating explicitly:
      Parameters between / and * can be positional OR named. And the function won't work if * comes before /, since the parameters in between would be required positional and required keyword, which creates a contradiction.

  • @zedascouve2
    @zedascouve2 Před 6 měsíci +16

    Absolutely brilliant for beginners. Crystal clear. I had countless errors due to the lack of understanding of mutable vs immutable variables

    • @andrewcrawford2977
      @andrewcrawford2977 Před měsícem

      I'm glad I stuck around; I had no idea about some of those other tips like in the function calls.

  • @apmcd47
    @apmcd47 Před 11 měsíci +63

    At around the 4 minute mark you are confusing immutability with references. When you do 'y = x' what you are doing is assigning the reference of the object that x is pointing to, to y. When you assign a new object to x it drops the old reference and now refers to a new object, meanwhile y still refers to the original object. You use tuples in this example, but this is true for lists and dicts. When you change to lists, all you are really demonstrating is that x and y refer to the same object.
    With your get_largest_numbers() example, if you were to pass a tuple into the function you would get an AttributeError because you were passing an immutable object which doesn't have the sort method.

    • @itsjaylogan
      @itsjaylogan Před 6 měsíci +1

      Thank you so much for correcting this section of the video. I hope enough people read this and try it so they can correct their understanding of the concept.

    • @eugeneo1589
      @eugeneo1589 Před 6 měsíci +3

      Isn't Python treat immutable types (strings, numbers, tuples) as literals, while lists and dicts are basically objects? Once you assign different value to a string or number or any other immutable type variable, you're actually creating another literal object, but the one you created previously still resides in memory and will be purged later, no?

    • @CliffordHeindel-ig5hp
      @CliffordHeindel-ig5hp Před 6 měsíci +2

      Yes, thank you. This kind of sloppy presentation should be career ending.

    • @elliria_home
      @elliria_home Před měsícem +2

      Actually, Tim was right and was pointing out the possibly-unexpected behavior one can run into with the behavior of mutable types:
      If you create x, create y with the value of x, and then REPLACE x by creating x again, then x and y will have different values. Try it yourself:
      x = [1, 2]; y = x; x = [1, 2, 3];print(x, y)
      If you create x, create y with the value of x, and then CHANGE x by reassigning one of its values, then x and y will have the same new value and the original value will be gone. Try it yourself::
      x = [1, 2];y = x;x[0] = 9;print(x, y)

    • @jcwynn4075
      @jcwynn4075 Před 13 dny

      ​@@CliffordHeindel-ig5hp your type of comment should be career ending 😂

  • @pharrison306
    @pharrison306 Před 11 měsíci +195

    Please do a global interpretor lock, love your explanation style, clear and concise. Keep it up

    • @adrianoros4083
      @adrianoros4083 Před 10 měsíci +3

      this is just what ive been searching, please elaborate on python interpretor and how does it differ from C compiler, noting that python is developed in C.

    • @phinehasuchegbu8068
      @phinehasuchegbu8068 Před 10 měsíci +2

      Please do this man!!!

    • @xxd1167
      @xxd1167 Před 10 měsíci

      ​@@adrianoros4083 c compiler is very fast than python interpreter due to the defining of type of variable before compiling

    • @harrydparkes
      @harrydparkes Před 8 měsíci +1

      ​@@xxd1167bro you clearly have no clue what you're talking about

    • @midtierplayer3890
      @midtierplayer3890 Před 8 měsíci

      @@xxd1167 If you don’t know what you’re talking about, please don’t post anything. Stuff like this hurts those who are here to learn.

  • @Gruuvin1
    @Gruuvin1 Před 10 měsíci +15

    Because of the GIL, Python multi-threading is not useful for processor-bound computing, but it is still great for I/O bound computing (processor waits for input and output; example: disk read/write or networked data). Multiprocessing is a great way to get around the GIL, when you need to.

  • @Raven-bi3xn
    @Raven-bi3xn Před 11 měsíci +38

    Great video! It might have been worth it to mention multiprocessing in Python as a way to overcome the multithreading limitation that you reviewed towards the end.

  • @MuhammetTaskin
    @MuhammetTaskin Před 4 měsíci

    Thank you so much. There is a lack of content on the internet about this. In addition to making things clear, it helped me in my programming midterm too.

  • @TonyHammitt
    @TonyHammitt Před 10 měsíci +49

    I wanted to mention that the if name is main thing is frequently used for test code for libraries. Your code may have some functions to import elsewhere, then you can do examples in the main of how to use them, or try various failure cases, illustrate how to catch exceptions, etc.
    Also, to those getting into programming, please do yourself a favor and leave a comment in your code as to what it's for. The most likely person to be reading your code later is you, but if you wrote it 6 months ago, it might as well have been written by someone else, so be kind to yourself.

  • @mariof.1941
    @mariof.1941 Před 11 měsíci +66

    Certainly! In addition to multithreading, Python also provides the multiprocessing module, which allows for true parallel execution across multiple processor cores. Unlike multithreading, multiprocessing bypasses the limitations imposed by the Global Interpreter Lock (GIL) since each process gets its own Python interpreter and memory space.
    By utilizing multiprocessing, you can take advantage of multiple processor cores and achieve parallelism, which can significantly improve performance in computationally intensive tasks. Each process operates independently, allowing for efficient utilization of available CPU resources.
    However, it's important to consider that multiprocessing comes with some overhead due to the need for inter-process communication. Data exchange between processes can be more involved and slower compared to sharing data between threads within a single process. As a result, multiprocessing may not always be the best choice for every situation.
    To determine whether to use multithreading or multiprocessing, it's crucial to evaluate the specific requirements and characteristics of your application. If the task at hand is primarily CPU-bound and can benefit from true parallel execution, multiprocessing can be a suitable option. On the other hand, if the workload consists of I/O-bound operations or requires a high degree of coordination and shared state, multithreading might be more appropriate.
    In summary, the multiprocessing module in Python offers a way to achieve true parallelism by leveraging multiple processor cores. While it circumvents the limitations of the GIL, it introduces additional overhead for inter-process communication, which may impact performance. Careful consideration of the specific requirements and trade-offs is necessary to determine the most suitable approach for your use case.

    • @nokken__1031
      @nokken__1031 Před 11 měsíci +28

      least obvious chatgpt user

    • @excessreactant9045
      @excessreactant9045 Před 11 měsíci +6

      Certainly!

    • @mariof.1941
      @mariof.1941 Před 11 měsíci +7

      @@excessreactant9045 Yes i using ChatGPT to translate from my Native Language in Englisch + I Used it to put more information in it

    • @flor.7797
      @flor.7797 Před 10 měsíci

      😂❤

  • @basavarajus2061
    @basavarajus2061 Před 11 měsíci +1

    Thank you you are right on point, we miss these understandings and start scratching our head when we get errors.

  • @Scobbo
    @Scobbo Před 9 měsíci

    This video made the concepts much easier to understand than others that I have seen. Thanks so much!

  • @linatroshka
    @linatroshka Před 11 měsíci +24

    Thanks for the video! Very consize and informative. The only thing that I would add about the GIL is that it because of it there are no performance advantages when it comes to so-call CPU-bound operations (like summation that was used as an example in the video). But when we are dealing with input/output-bound operations, such as sending a HTTP-request, then multithreading will improve performance, because instead of waiting for response before continuing executing code, we can use that waiting time to make more HTTP-requests. This can help handling multiple requests that are send to your web-applications, for example.

    • @shubhamjha5738
      @shubhamjha5738 Před 11 měsíci

      Hey Lina, i also have a django function on which request lands, it was giving timeout error when 2users were hitting the same fn using url, then i increased the gunicorn worker and now it's working fine.
      So my qn is, was that a good idea or there is any other way to handle concurrent request on prod. Fyi that fn involve hitting different tables, and storing bulk data in one of tables using orm.
      So if you can comment over this about the best way to handle these things. Kindly share.

    • @sahilkumar-zp7zv
      @sahilkumar-zp7zv Před 10 měsíci

      @@shubhamjha5738 Gunicorn is actually running your Django application on two different instances.

  • @craigsievewright
    @craigsievewright Před 7 měsíci

    Dude!!! That was a great tutorial. There are so many "beginner" python tutorials out there and it makes it hard to find the more advanced ones. I learnt a bunch! Thanks!!!

  • @koflerkohime2981
    @koflerkohime2981 Před 11 měsíci +25

    Great content. Keep it up. However, I believe there is a mistake at 3:34. You mention that we have some sort of automatic "copying" going on with "y = x" when using immutable types. This is actually not correct. The assignment still works exactly like with any other object - the reference x is assigned to y. Identifiers x and y are simply referring to the same 2-tuple object. After that, you change what identifier x is referring to (another 3-tuple) and print out the two individual objects. The identifiers are still references - even if using immutable objects.

    • @illusionofquality979
      @illusionofquality979 Před 11 měsíci +1

      I might be dumb but don't you mean "x" instead of "y" here:
      "After that, you change what identifier y is referring to"

    • @kungfumachinist
      @kungfumachinist Před 11 měsíci +9

      Came here to say the same. The point can be illustrated with this code, x and y point to the same thing:
      >>> x = 1
      >>> y = x
      >>> print(hex(id(x)), hex(id(y)))
      0x7f82aa9000f0 0x7f82aa9000f0

    • @koflerkohime2981
      @koflerkohime2981 Před 11 měsíci +1

      @@illusionofquality979 Yes, indeed you are correct. I have edited my comment.

  • @yerneroneroipas8668
    @yerneroneroipas8668 Před 11 měsíci +25

    This is a great video for someone who is learning python as a second, third, or nth language. These are very python specific implementations of universal concepts and I had been wondering about their purpose when seeing python code.

    • @nicj_art
      @nicj_art Před 2 dny

      Should I be worried learning these concepts if I'm thoroughly learning Python as my first language? What should I look out for since I plan to move on to C++?

  • @Jose-di6wc
    @Jose-di6wc Před 5 měsíci +1

    Really quality content and you can see that Tim really put some effort in explaining things, making topics captivating, and clear. Thanks!!

  • @shaikhyusufniaz759
    @shaikhyusufniaz759 Před 11 měsíci +5

    Hi Tim, Great content as always. Would appreciate a separate detailed video on GIL

  • @ireonus
    @ireonus Před 11 měsíci +18

    At around 11 mins another cool thing you could know mention is that if you provide a default variable that is mutable, say a = [], and say you modify the list to look like within the function to say a= [1,2,3], that default varraible is actually now a = [1,2,3] and could create problems if you call that function twice without giving the a argument

    • @HerrNilssonOmJagFarBe
      @HerrNilssonOmJagFarBe Před 11 měsíci +1

      Can you clarify what you mean with a code example?
      I thought you meant this, but the default value doesn't change in this case (luckily, that would have been disastrous...)
      >>> def f(x,a=[]):
      ... print(a)
      ... a=[3,4,5]
      ... print(a)
      ... pass
      ...
      >>> f(9)
      []
      [3, 4, 5]
      >>> f(9)
      []
      [3, 4, 5]
      How would you make the default value change?

    • @ireonus
      @ireonus Před 11 měsíci +1

      @@HerrNilssonOmJagFarBe yes, here you setting the value with the statement, , a=[3, 4, 5],which as far as I know is now stored at a different place in the memory but try instead by having your default value as say a = [1] and then in the function append a value to the list, something like,
      def add_item(a = [1] ):
      a.append(2)
      print(a)

    • @HerrNilssonOmJagFarBe
      @HerrNilssonOmJagFarBe Před 11 měsíci +1

      @@ireonus
      >>> def f(x,a=[]):
      ... a.append(2)
      ... print(a)
      ... pass
      ...
      >>> f(1)
      [2]
      >>> f(1)
      [2, 2]
      >>> f(1)
      [2, 2, 2]
      Oh.
      Well, that's truly weird...!
      I also tried a recursing version of f() which made the issue even more spectacular.
      So 'a' is local to each particular invocation of the function, but the default value itself is the same across calls?
      What happens to the memory that's claimed by the default value once I've called the function too many times.
      There is no way to directly reference it outside the function. Can I ever reclaim it (short of redefining the function)?

    • @kmn1794
      @kmn1794 Před 10 měsíci

      f.__kwdefaults__['a'] I use this like f(x, *, _cache={}) but have not tested it across imports. Should probably fully understand the implications with good tests before using these for personal projects.

    • @HerrNilssonOmJagFarBe
      @HerrNilssonOmJagFarBe Před 10 měsíci

      @@kmn1794 Clever. It also made me understand the behaviour. Thanks!
      But such code seems obscure and abusive of that particular language quirk.
      How many would understand such code? I certainly wouldn't have until I saw this youtube vid.

  • @vinhlo2637
    @vinhlo2637 Před 11 měsíci

    In a long time, I kept thinking that multiple-threads speed up my process until I watch your video. Great video Tim! Hope that you will make a video about this crazy global interpreter lock.

  • @craigdawkins6943
    @craigdawkins6943 Před 10 měsíci +1

    HI Tim, Just getting into coding: as you know (motivation level throught the roof - then realise html is not a stepping stone but a foundation of things to understand) Well Done on your coding journey! 😅🧐💫💫

  • @Eeatch
    @Eeatch Před 2 měsíci +1

    I am currently doing Python courses and i struggle a lot, i like that you distinguished parameters and arguments correctly and basically everything else what you've said is exactly the same things, that i got myself/what i've been told. But it is good to refresh upon those conceprts and methods to proceed with my further studying, because i when i am given a task almost everytime i find it hard to came up with the right solution and fail to get the right approach to it. Thank you for the video. Subscribed!

  • @yutubl
    @yutubl Před 11 měsíci +3

    Thanks. Most things I already know, so my takeaway:
    1.) immutable types = C#/.NET valuetypes or Java primitive types, plain data types in C/C++, Pascal and mutable types = C#/.NET reference types or Java object types, C++ reference, dereferenced pointer data aka memory location in C/C++/Pascal/Assembler.
    2.) List comprehension is reverted looping writing style (like perl?).
    3.) Function arguments look similar to other languages here added dynamic argument *args and ** kwargs little bit like C's ... period argument and function.
    4.) __name__=="__main__" unique feature? Easy, but unique, as I didn't saw dynamic caller backreference in another language.
    5,) I thought GIL is about single threading

  • @johnnytoobad7785
    @johnnytoobad7785 Před 11 měsíci +9

    Threading just takes advantage of GIL "idle time". (aka I/O wait-states)
    The Python "Multiprocessing" module allows you to run exclusive processes in multiple cores. (ie CPU-bound applications.).
    And (believe it or not) you CAN use threading inside an M/P function if it is coded properly. (according to the rules of MP functions and threads...)

    • @LMProduction
      @LMProduction Před 11 měsíci +3

      Yeah I was doing this on one of my projects and I'm surprised Tim didn't mention it in this video. Made it seem like you just can't do it at all.

    • @frostsmaker8966
      @frostsmaker8966 Před 11 měsíci

      Mojo will solve multi-thread problems in Python. Do you need something fast and it is Python? Mojo is the answer for you.

  • @somongulmamadov3510
    @somongulmamadov3510 Před 11 měsíci

    As usual, great work! Nothing fancy, well explained! Thx!

  • @carl2488
    @carl2488 Před 3 měsíci

    The explainer of mutable and immutable is really really clear, concise and useful...

  • @andreibaditoiu
    @andreibaditoiu Před 7 měsíci +1

    Great explanation style, thanks for your work!

  • @triforgetech
    @triforgetech Před 9 měsíci +1

    Great refresher been diging into C++ some time your forget the basics concepts great job thanks

  • @douglasgammill1842
    @douglasgammill1842 Před 11 měsíci +1

    This helped me alot, thank you. What about multiprocessing though? I know it's not a standard module but it does say in the Docs that it does side step the global interpreter lock. I've been thinking of trying it out.

  • @jasper5016
    @jasper5016 Před 8 měsíci

    Thanks so much for so many useful videos. Can you please take some small Python projects and show the requirement gathering, design, and development of it?

  • @user-jc1xb7xr9u
    @user-jc1xb7xr9u Před 5 měsíci

    This video has actually closed some gaps in my understanding of Python. It's truly a very cool and useful video, thank you

  • @JoanFernandez17
    @JoanFernandez17 Před 8 měsíci

    Interesting and amazing video, Tim. I’m currently learning Python and I was struggling with some concepts until I saw this! Simply thank you and greetings from DR 🇩🇴

  • @danuff
    @danuff Před 20 hodinami

    I am just learning Python and this video is VERY helpful. Thank you!

  • @ventures9560
    @ventures9560 Před měsícem

    3:50
    It's also an effect of the fact that the file is read from top to bottom. Line 2 get the evaluated before a line you were to swap lines 2 and 4 with 1 anothen X would equal (1, 2, 3).

  • @aribalmarceljames9908
    @aribalmarceljames9908 Před 7 měsíci +1

    Your'e True Legend for us as Python Developer! Thankyou

  • @Imnotsoumyajit
    @Imnotsoumyajit Před 11 měsíci +133

    Tim bro you never disappointed us ..This is straight up golden content...Really appreciate your work...Can we get more videos of you summarizing concepts in under 30mins once a month maybe ?

  • @danield.7359
    @danield.7359 Před 11 měsíci

    I didn't know about the "GIL". Your explanation gave me the answer to a question that I had parked for some time: why did concurrency not speed up a specific function that processed a very large list? I hope this will be fixed soon.

  • @yoyonel1808
    @yoyonel1808 Před 11 měsíci

    Great video/content,
    definitely want more informations/contents about GIL and multiprocessing in Python/Cython ;-)
    Thanks you for your work !

  • @BillyT83
    @BillyT83 Před 11 měsíci

    Thanks for clarifying these concepts Tim!

  • @kashfox1050
    @kashfox1050 Před 8 měsíci

    Thanks for the info as always! Really helpful

  • @Pumba128
    @Pumba128 Před 11 dny

    At 3:45 with:
    x = (1, 2)
    y = x
    you are not doing a copy, it is still an assignment to an immutable object.
    You can check it with:
    print(x is y)
    This returns True, meaning that both x and y are referencing the same object - a tuple (1, 2).
    And of course print(x == y) also returns True, as we are comparing an object with itself.

  • @user-mi2bb8bm6s
    @user-mi2bb8bm6s Před 11 měsíci

    Hi, Tim. Learning lots of things from you! Many thanks from South Korea.
    Please make an entire GIL video!

  • @alimihakeem841
    @alimihakeem841 Před 11 měsíci

    I so much like the way you explained.. It's fantastic. and as well like your content, it's beneficial

  • @willwidrick8039
    @willwidrick8039 Před 8 měsíci

    I appreciate the explanations, thanks for the video

  • @narutoxboruto873
    @narutoxboruto873 Před 11 měsíci +28

    There is an error in the time stamps ,names of function arguments and if __ are interchanged

  • @anitasunildesai
    @anitasunildesai Před 7 měsíci

    Thanks a lot for this tutorial as improved my understanding a lot. Request to kindly upload more of these beneficial vedios. 🙏🏼🙏🏼

  • @xaviervillalobos3958
    @xaviervillalobos3958 Před 2 měsíci

    Thank you, I really appreciate this video. It has been really helpful to me on my Python learning journey. :)

  • @YonnBurgos
    @YonnBurgos Před 9 měsíci

    I appreciate the tutorial! Great job!

  • @OggVorbis69
    @OggVorbis69 Před 7 měsíci

    thanks a lot super useful video. just to show nowarefuly we listen to you at around 1900 the sample given for parallel summary of 1..100 the narrative states if I sum from0 ..25 and from 25.. there shouldn't be overlap of 25 I think.

  • @hurtbadly2004
    @hurtbadly2004 Před 11 měsíci

    thanks bro tim, love you for your time , you are a hardworking individual :)

  • @heco.
    @heco. Před 10 měsíci

    the only thing i didn't know that you could put * before list or dic as arguments so i guess it was helpful

  • @JustAGuyWithThoughts
    @JustAGuyWithThoughts Před 10 měsíci

    So new to learning python, specifically for data collection and use in Marketing/Digital. My question between immutable and mutable would be use case.
    My assumption would be that you use a scraper etc. to collect data, then define that as an immutable data type, aka. store the raw data as a string. To manipulate/work with the data, you would then pass that string to a mutable data type, I'd assume a dictionary. From that, you can then pull sections of data, organise the data etc., and clean the data to be able to use it for statistics/interpretation. That way the original data is preserved and cannot be corrupted, but you're able to make as many copies of the raw data for whichever transformations you may need to make and use those different mutable copies for each required purpose. Would that be the correct thinking?

  • @user-sj9xq6hb9p
    @user-sj9xq6hb9p Před 7 měsíci

    Multi threading is beneficial when your python program pauses or waits for the user to input something till then the GIL can be passed to another function and it can run that while its waiting for the user to provide the input

  • @earthslyrics
    @earthslyrics Před 10 měsíci +1

    That actually was really good thank you very much
    I just finished a code where it was "downloading 10 files at a time which is 10 times faster"... Now I understand why it doesn't work so well :')

  • @raymondgrant2015
    @raymondgrant2015 Před měsícem

    Thank you for this video! Very clear overview of important concepts in Python

  • @davdeveloper
    @davdeveloper Před 11 měsíci +4

    I am always surprised how informative your videos are. I have a question, what's the point then to have multi threading in python if only 1 is being executed at a time ?
    Also Tim, I would love to see a video about top 5 useful algorithms in programming.

    • @MSIContent
      @MSIContent Před 11 měsíci +1

      There are a few good answers to the in the comments 👍🏻

    • @OM-xv5zx
      @OM-xv5zx Před 11 měsíci

      Threads occur concurrently, while processes occur in parallel. Threads are better for I/O bound operations while processes are better for CPU bound operations.

  • @kluchtube7042
    @kluchtube7042 Před 8 měsíci

    Very useful video ❤ keep up the good work tim😊

  • @jay8930able
    @jay8930able Před 8 měsíci

    Thanks Tim can you discuss the different libraries also I was told that if the code is made not to rewrite it. How can I go about finding these codes

  • @raghaventrarajaram
    @raghaventrarajaram Před 10 měsíci +2

    Multithreading is highly advantageous for tackling large problems. I suggest creating a video to elaborate on its benefits for our audience.

  • @elliria_home
    @elliria_home Před měsícem

    This was simply phenomenal. Brilliantly done.

  • @YevheniiMemruk
    @YevheniiMemruk Před 8 měsíci

    When you do assigning one variable to another and the type is immutable, actually they store the refference to the same object ( I used function " id( ) " to check this out ), but than when you change the value of first variable the reference changes. idk

  • @itmanager1449
    @itmanager1449 Před 8 měsíci

    Great video! Thank you!

  • @odarkeq
    @odarkeq Před 11 měsíci

    I recently ran across *args, **kwargs in some code I was stealing, uh borrowing, and it might as well have said *abra **kadabra because I didn't really get how it worked. You made me understand. Thanks.

  • @ricdelmar4961
    @ricdelmar4961 Před 11 měsíci +9

    The statement you made at about 3:30 was not correct. Writing y = x (where x is a tuple) does not create a copy of the object, as you can tell by looking at their ids -- they are identical. So, there is no difference between mutable and immutable objects in this respect. That line only creates a new variable that points to the same object as x did.

    • @i.a.m2413
      @i.a.m2413 Před 10 měsíci +2

      Exactly. Additionally, assignment to x just lets x point to another thing and doesn't modify what x pointed to. That whole part was conceptionally wrong.

  • @jesprotech
    @jesprotech Před 6 měsíci

    Thank you for the video! I find it very interesting how you show how to work with Python.

  • @AnantaAkash.Podder
    @AnantaAkash.Podder Před 9 měsíci

    Your *args, **kwargs explanation was amazing... Positional Argument & Keyword Argument... You made it very very Easy to Understand the Concept❤️❤️

  • @garrettsmith315
    @garrettsmith315 Před 11 měsíci +2

    Incredible, love seeing your content. You inspired my learn a lot of my current programming knowledge and curiosity

  • @Qbill0079
    @Qbill0079 Před 11 měsíci

    thank for sharing, this is very important to beginner like me.

  • @yankluf
    @yankluf Před 3 měsíci +1

    Fiiiiinally I understand those *args/**kwargs!!! Thank youuuuuuu!! 🎉🎉

  • @LudovicCarceles
    @LudovicCarceles Před 10 měsíci

    Thanks, I wasn't sure about the second to last and never heard of the GIL.

  • @NovaHorizon
    @NovaHorizon Před 7 měsíci

    I'm positive I've used multiprocess pools to get significant performance boosts while trying to do machine learning in the past..

  • @justasydefix6251
    @justasydefix6251 Před 7 měsíci

    16:34 Sir, we can import concurrent.futures and multiprocessing modules for multiple cores and parallel executions.

  • @Nerdimo
    @Nerdimo Před 7 měsíci

    I get that there’s GIL and that python is a single threaded program, however I’m confused how the threading library is faster for I/O bound operations. I watched your video on threading and it was helpful, but I’m still a little curious what’s going on behind the scenes.

  • @charlesdanamor3317
    @charlesdanamor3317 Před 7 měsíci

    this really helped me.

  • @yah5o
    @yah5o Před 2 měsíci

    Now I'm so looking forward to running into my first mutable/immutable issues....

  • @acjazz01
    @acjazz01 Před 11 měsíci

    I'm not a Python developer, I'm an iOS developer (Swift, SwiftUI), I'd love to have people teaching new features on iOS with the same clear and concise speech as yours.

  • @RedShipsofSpainAgain
    @RedShipsofSpainAgain Před 9 měsíci

    4:35 so is it accurate to say that when x was originally an immutable object like a tuple, and when assigning y = x, then x is passed "by value"?
    And when x was originally a mutable object like a list, when re-assigning x using y = x, then x is passed "by reference"?

  • @RAJAT2372
    @RAJAT2372 Před 11 měsíci

    Very informative for beginners! Thanks you for putting this together!!

  • @ankitasinha7892
    @ankitasinha7892 Před 8 měsíci

    this is gold! thanks!!

  • @Team-hf7iu
    @Team-hf7iu Před 11 měsíci +1

    Thank you sir. You getting old😅 can remember your first pygame turorials i followed years ago. Wow Kudos sir keep it up!

  • @firefly7076
    @firefly7076 Před 11 měsíci +4

    about 4:04 your explanation of changing values in mutable v. immutable types is really weird. You eventually get to saying that variables are actually just pointers to objects, and saying x=y is just reassigning the pointers to be the same (in other words, there is an object that y points towards, and executing x=y is setting the pointers to be the same) but you also say that immutable types do a clone instead which is... wrong. Here's some code that can be used to see that:
    x = (1, 2)
    y = x
    print(y is x)
    output:
    > True
    the two numbers should be the same, but should be different each time you run.
    The 'y is x' statement is comparing the ids of the numbers, aka where they are in the code. They're the same object.
    Some more code to show that 'is' is not just a fancy '==':
    x = (1, 2)
    y = tuple([1, 2])
    print(y is x, y == x)
    ouput:
    > False, True
    Different objects.

  • @What_do_I_Think
    @What_do_I_Think Před 5 měsíci +1

    Most important concept in programming: Boolean algebra.
    Many programmers do not get that right, but that is the basics of all computation.

  • @nigh_anxiety
    @nigh_anxiety Před 11 měsíci +3

    At 3:30, your description of why changing x does not change y is incorrect and seemingly makes the same mistake many new Python developers make when working with mutable objects such as lists.
    The assignment `y = x` does NOT create a copy of the original tuple in y. y and x both point to the exact same tuple object in memory. This can be shown with either `y is x` (outputs true) or by printing `id(x)` and `id(y)` which will be identical.
    When you subsequently assign x to a new tuple, x now points at a new tuple object at different location in memory, which you can see by checking id(x) before and after that assignment.
    All variables in Python are references to objects. Doing an operation like `y = x`, for any type of object in x, simply makes y a reference to the same object, which is why mutable objects passed as arguments to a function can be mutated by that function. Likewise, anytime you assign a new value to a variable referencing an immutable object, you get a brand new object. if a = 1000, and then a += 1, you also change the id of a to a brand new object of
    For some more interesting examples, if you do something like `for i in range(-1000, 1001, 50): print(i, id(i))`, you'll see the id value change for each value, but in most implementations it alternate back and forth between a couple of ids as the interpreter reuses the memory block that was just freed by the garbage collector from the value in the previous loop. The exception is for ints in the range of -5 to 255 (at least in CPython) you'll get a different set of ids because those int objects are pre-allocated when interpreter starts and remain in memory to improve performance, as do the None object and True/False.

  • @Kiran_Nath
    @Kiran_Nath Před 3 měsíci

    Your solution for if __main-- = "__main__" legitimately saved my sanity. I was working on an asynchronous endpoint function and i was having difficulty closing the event loop until using that worked!

  • @markusobi4148
    @markusobi4148 Před 11 měsíci

    Very informative, thank you!

  • @edwardedward7765
    @edwardedward7765 Před 9 měsíci

    Dear Tim, regarding Section 01 (mutable vs immutable), if we use string as an example, is the following program a good example ?
    fruit = "Apple"
    print (fruit) # Output: "Apple"
    fruit = "_pple" # Allow
    print (fruit) # Output: "_pple"
    print (fruit [0]) # Output: "_"
    fruit = fruit[0] = "A" # Not allowed

  • @leeamraa
    @leeamraa Před 7 dny

    good video! I learned few new things. thank you.

  • @chillydoog
    @chillydoog Před 11 měsíci +2

    I would like to know more about the GIL!
    I love your videos because you distill the essence of what is important of these complex topics. I can say I have never fully understood the functionality of if __name__== __main__.
    I thought this was just something you do to initialize a class. Thank you for making this concrete.

  • @fpoddball
    @fpoddball Před 7 měsíci

    Could you make an mutable type into a immutable type? I just started learning python a couple days ago so I’m still back at the very basics right now.

  • @honza572
    @honza572 Před 7 měsíci

    18:33 - Hi, are you sure there is no efficient way of overcoming it? (to use multiple cores)

  • @derickmcwilliams8089
    @derickmcwilliams8089 Před 2 měsíci

    Thank you for your demonstration of mutable!

  • @phillipzastrow5548
    @phillipzastrow5548 Před 10 měsíci

    Hi there, In the args and kwargs section. I am getting the feeling, that using kwargs seems to be the cleanest/fail proof way to deal with arguments. In what scenarios would args be better? Any thoughts?

  • @pedrostrabeli4659
    @pedrostrabeli4659 Před 11 měsíci +4

    I don't wanna be THAT GUY, but actually in the first part, when you do the tuple
    x = (1, 2)
    y = x
    x = (1, 2, 3)
    you're actually creating only one (1, 2) set in the memory. x points to that set, y points to the same set, so no hard copy. when you assign a new set to x in the third line, you create a new set in memory and only changes the memory address that x points to.
    The difference is that a set has no x[0] = n assignment (since it's immutable), then you're always reassigning.

  • @AbdulWahid-jl4ut
    @AbdulWahid-jl4ut Před 6 měsíci

    Thanks for the explanation, but threading can be used. I have used it in a GUI application

  • @Master_of_Chess_Shorts
    @Master_of_Chess_Shorts Před 11 měsíci

    good stuff thanks, I'd love to see real life examples of when you would use *args and **kwargs for functions.

  • @worldanime9884
    @worldanime9884 Před 11 měsíci

    hello Tim, I have a question. Do you have any recommended courses for learning django or flask?

  • @jimhicks1947
    @jimhicks1947 Před 11 měsíci

    Your videos are great! The only problem I'm having is, the text, at the bottom of the screen is covering your examples when you run the code...

  • @TodiDiang
    @TodiDiang Před 11 měsíci +3

    Nice video, can you also make something like this but for the C++ program language?