THIS is Why List Comprehension is SO Efficient!

Поділитися
Вставка
  • Опубліковано 28 вер 2024
  • ⭐ Join my Patreon: / b001io
    💬 Discord: / discord
    🐦 Follow me on Twitter: / b001io
    🔗 More links: linktr.ee/b001io
    Background Music:
    Slowly by Tokyo Music Walker | / user-356546060
    Music promoted by www.free-stock...
    Creative Commons / Attribution 3.0 Unported License (CC BY 3.0)
    creativecommon...

КОМЕНТАРІ • 233

  • @AccessDen
    @AccessDen 10 місяців тому +264

    If you have complex operations in a list comprehension it is almost always better to extract them into a function and then do something like [ f(n) for n in range(100) ]. This makes it clear that the list isn't being constructed by a recursive process and the reader can safely understand the function f independently of the range of values it is taking as input.

    • @Suntoria236
      @Suntoria236 10 місяців тому +32

      Oh damn, now I’m beating myself over not using this way earlier. I’ve written some horrendously complicated list-comprehensions before…

    • @adamvinch5173
      @adamvinch5173 10 місяців тому

      ⁠​⁠@@Suntoria236run “import this” in Python. “Simple is better than complex”. Even if the complicated way is a little bit more efficient, a solution that is easy to understand is way more valuable

    • @suhailmall98
      @suhailmall98 9 місяців тому +3

      Or use a lambda function in the list comp

    • @DapsSenpai
      @DapsSenpai 9 місяців тому +19

      @@suhailmall98 this problem is specifically about not doing that to improve readability of list comprehension

    • @fisch37
      @fisch37 9 місяців тому

      But what am I going to do with my seven line listcomp?!

  • @LethalChicken77
    @LethalChicken77 10 місяців тому +544

    My favorite optimization in python is rewriting my program in C++

    • @cholling1
      @cholling1 9 місяців тому +90

      And if your original program uses numpy, rewriting it in C++ will probably slow it down.

    • @electronx5594
      @electronx5594 9 місяців тому +18

      ​@@cholling1lmao this sent me laughing

    • @PongsiriHuang
      @PongsiriHuang 9 місяців тому +2

      ​@@cholling1I know numpy is quite fast but is it faster than code in C++?

    • @kirarevcrow
      @kirarevcrow 9 місяців тому +2

      Ofc you're gonna write a backend with C++

    • @fisch37
      @fisch37 9 місяців тому +28

      ​@@PongsiriHuang Depends how good you are at C++

  • @samyakjain4715
    @samyakjain4715 4 місяці тому

    Damnn someone making non beginner content, great work mann

  • @craftydoeseverything9718
    @craftydoeseverything9718 10 місяців тому +2

    This is such an interesting video! I had no idea about Python's `dis` library but I genuinely think I'm going to use it a lot now!

  • @Carberra
    @Carberra 10 місяців тому +1

    List comprehension ftw 😎 Really nice explanation!

  • @dariomartin8032
    @dariomartin8032 10 місяців тому +2

    Your videos are simply perfect, easy to understand, quick and simple.
    Good job, keep it up👍👍

  • @lightning_11
    @lightning_11 10 місяців тому

    "Now, the interpreter has 3 parts. 1) the compiler..." (1:50)
    Me: Hold up!! I call foul.

  • @kubre
    @kubre 10 місяців тому

    I remember doing this experiment and was amazed how much difference there was also the operator ** on list is also really fast

  • @mosesmbadi
    @mosesmbadi 29 днів тому

    Awesome content. Quick question, what tool do you use to animate your videos?

  • @SashoSuper
    @SashoSuper 10 місяців тому +1

    Well, thank you for making another video that we can learn from.

  • @johanekekrantz7325
    @johanekekrantz7325 10 місяців тому +4

    My perspective is that if you have to sacrifice readability for performance in python you are generally using the wrong language for the problem.
    Need a language that is easy to learn, get started with and make to make small to medium sized prototypes in? Then python is a good choice for a lot of people.
    Need a language that is fast and flexible? Then go with something like c, c++ or rust. If its just some small part you can make bindings. Even fairly simple c++ code can sometimes be thousands of times faster that the equivalent python code.

    • @cheesepie4ever
      @cheesepie4ever 10 місяців тому

      Theres always a middle ground of ease of use Vs performance. It doesn't have to be black and white

  • @tommy2117
    @tommy2117 9 місяців тому

    Your content is so good, learn new thing everyday

  • @aioia3885
    @aioia3885 10 місяців тому +3

    How would the time change if instead of using append, which has to sometimes reallocate another buffer, you just did something like my_array = n*[None] and then my_array[i] = x

    • @MG-xn4ug
      @MG-xn4ug 9 місяців тому +1

      I tested it and posted the results in a different comment. Short version is that your method is an additional ~17% faster than list comprehension.

  • @Sinke_100
    @Sinke_100 10 місяців тому

    Your python game is raising, this is good content 👍🏻

  • @dextrin36
    @dextrin36 10 місяців тому

    Amazing video, with a great explanation!!

  • @paulsingh11
    @paulsingh11 10 місяців тому

    Great! Another thing not taught at college! Glad I took Bio and Chem!

  • @eloimartinez9446
    @eloimartinez9446 9 місяців тому

    The real question is why the compiler doesn’t make the same bytecode for both options

  • @imsisig
    @imsisig 10 місяців тому +2

    Youre like fireship but python

  • @davidro00
    @davidro00 10 місяців тому

    A very comprehensive Video🫶🏼

  • @TanmayBhatgare
    @TanmayBhatgare 10 місяців тому

    bro, please tell me which theme you are using...............................

  • @xxlarrytfvwxx9531
    @xxlarrytfvwxx9531 10 місяців тому +3

    Would this be O(n)?

    • @seanthesheep
      @seanthesheep 10 місяців тому +3

      both are O(n), you can see it's linear in the graph

  • @Thekingslayer-ig5se
    @Thekingslayer-ig5se 10 місяців тому

    The best channel for people like us who work extensively in python

  • @mehDfd
    @mehDfd 10 місяців тому

    For this specific case where no added condition cant you simply return range(n)

    • @tokeivo
      @tokeivo 10 місяців тому +1

      Nope - not been able to do that for a long time. Range returns an iterator. You could return list(range(n)).

    • @mehDfd
      @mehDfd 10 місяців тому

      ​@@tokeivoi was fast to assume it retuned a list after printing it, thanks for the info

  • @kicknotes
    @kicknotes 10 місяців тому

    dis? who dis? deez? You know the rest...

  • @Oscar-vs5yw
    @Oscar-vs5yw 10 місяців тому

    God, don't use **2 if you wanna even talk about optimization! Using x*x instead of x**2 is gonna be a much bigger performance improvement than list comprehension over a for loop god

  • @dimigaminghd4523
    @dimigaminghd4523 10 місяців тому

    You talk like Fireship

  • @nobelphoenix
    @nobelphoenix 10 місяців тому +191

    This was one of the most unique python videos I've watched on yt. It's the first time I've looked under the hood of a python code. Thanks!

  • @klb-og7cp
    @klb-og7cp 10 місяців тому +132

    You should do more vids on writing efficient code! I think youtube lacks this type of programming content

    • @harrytsang1501
      @harrytsang1501 10 місяців тому +4

      Efficient python is just python with proper use of external libraries. The most important part is still readability.
      Simply put, can you understand and work on this code 2 years from now and taken out of context

    • @l_..l.l.__l..l8833
      @l_..l.l.__l..l8833 10 місяців тому

      ​@@harrytsang1501very true, use libraries written in C like numpy, and properly follow pep and you'll be fine

    • @gnikdroy
      @gnikdroy 10 місяців тому +9

      Trying to "microoptimize" python is pointless. If performance of lists of numbers was a concern, you would be using something like numpy anyway.
      The performance difference between a list comprehension and a for loop is never useful in python.

  • @williamjedig7480
    @williamjedig7480 10 місяців тому +54

    I'm a little confused - if the main time savings arise from not having to load, precall, and call the append() function, why are the gradients of the list comprehension and for-loops so similar? It looks as though list comprehension in your example has a pretty constant time advantage. Would loading, precalling, then calling in every iteration not imply that the longer the list, the greater the time saving?

    • @Святослав-я1б
      @Святослав-я1б 10 місяців тому +25

      No, it doesn't "load" list like you think it does. The list is always in the memory, python just loads "header" part of the list, which is of constant size.

    • @megaing1322
      @megaing1322 10 місяців тому +9

      Both are O(n) in total, just the scaling factor C is different. Each iteration takes less time, but this time is constant whether n is 10 or 10000.

    • @sobriquet
      @sobriquet 10 місяців тому +21

      I agree with @williamjedig7480. Since the lines are almost parallel, the overcost of the for loop method can't be caused by something in the for loop. It looks like there is no link between the graph and the disassembled code.

    • @koktszfung
      @koktszfung 10 місяців тому +7

      ​@@megaing1322if it is linearly scaling differently with n, then the slope would be different. Here, it is some random shift vertically.

    • @megaing1322
      @megaing1322 10 місяців тому +2

      @@koktszfung You are right, his data fails to show it, I guess it's trash, i.e. not enough data points or too much noise. But correctly done, You clearly see the different slopes, and my explanation of the result you would see if you did it yourself is correct.

  • @sorenmoller8888
    @sorenmoller8888 10 місяців тому +27

    Since often times list comprehensions in python are used to filter or map elements from a list, how does the speed compare when using a list comprehension compared to using the map/filter methods?

    • @fakt7814
      @fakt7814 10 місяців тому +4

      Interesting question. I think the biggest difference is that map, filter and zip are generators, so they run only when the next element needed, but no more. So if you don't need to accumulate intermediate results and you have a long chain of filtermap-like operations, it may be better to use generators at first and then iterate them. However I like to use functools.partial for lazy execution rather than generators, because they work in much more intuitive and explicit way (for example, you can't iterate through the same generator twice which can cause a bug if you're not careful, but you can use a list of partials as many times as you want).

    • @Bobbobbob984
      @Bobbobbob984 10 місяців тому

      You can just use a generator expression. Haven't checked with the new optimizations. But in the past basically comprehensions were always faster because c and optimizations basically.

    • @olivierbouchez9150
      @olivierbouchez9150 10 місяців тому

      Filter is a generator. It makes code more efficient, look video on itertools library.

  • @JonyElektro
    @JonyElektro 10 місяців тому +3

    If I can ask... What's your VSCode theme? It looks sick

    • @tokeivo
      @tokeivo 10 місяців тому +1

      The colors look like typical Darkula or Dracula - not sure what's available in VSCode, but I assume one of those would be there.

  • @Indently
    @Indently 9 місяців тому

    1:36 Very easy to read and understand, not on my watch!

  • @kaantureyyen
    @kaantureyyen 9 місяців тому +1

    Does anyone know his vs code setup? Theme, font, etc.

  • @DinoHunter216
    @DinoHunter216 10 місяців тому +3

    I like your font ! What is it ?

  • @MeerWulf
    @MeerWulf 9 місяців тому +1

    Isn't it moreso that append keeps being called and not that the list comprehension is actually faster

  • @max-mr5xf
    @max-mr5xf 10 місяців тому +7

    You should also keep in mind that range is a generator and depending on its use the comprehension will return a generator too instead of the list.
    Depending on the scale (when you don’t need to keep all data in memory, when you’re working with infinite generators etc), the comprehension may make things even more useful than just faster.

    • @cholling1
      @cholling1 9 місяців тому +4

      List comprehensions (in square brackets) ALWAYS return lists, even if the code inside them iterates over a range. Generator comprehensions (a parentheses) return generators.

    • @bitzero000
      @bitzero000 8 місяців тому

      generator comps are so sick. i use them all the time with pytest

  • @_HetShah_
    @_HetShah_ 10 місяців тому +3

    what font do you use?

  • @robinabashir6333
    @robinabashir6333 10 місяців тому +1

    Can you please do a video on cgi using python and html forms

  • @tomaslucenic4388
    @tomaslucenic4388 10 місяців тому +5

    Top explanation! Many thanks for such high quality and easy to understand content! 🙏

  • @olivierbouchez9150
    @olivierbouchez9150 10 місяців тому +2

    Agree, numpy or pandas are faster, but add extra learning curves. This video is a training. Computation on a big list of number, if needed to be stored in memory, I would do it with numpy. Otherwise I will prefer a generator.

  • @juanmacias5922
    @juanmacias5922 10 місяців тому +4

    This was amazing, thank you for the in depth answer!

  • @LethalChicken77
    @LethalChicken77 10 місяців тому +1

    Ah crap I accidentally did dis.dat()

  • @dany_fg
    @dany_fg 4 місяці тому +1

    Is this more efficient in dict and set too ?

  • @fabricehategekimana5350
    @fabricehategekimana5350 10 місяців тому +2

    I don't really like python but list comprehension is both performant and syntactically interesting ! Nowadays, zig is more low level than c

  • @no_name4796
    @no_name4796 10 місяців тому +15

    It's always funny how whenever someone explain why X is faster then Y in python, it always come down to the actual C implementation of X and Y.
    It's like python is just a C wrapper
    (I use rust, btw)

    • @Maxawa0851
      @Maxawa0851 10 місяців тому +5

      It quite literally is

    • @megaing1322
      @megaing1322 10 місяців тому +3

      I mean, rust is just an assembly wrapper.

    • @no_name4796
      @no_name4796 10 місяців тому +1

      @@megaing1322 yup, this is technically correct. Even though i want to see anyone able to write rust like code in assembly lol (well i guess python would be the same, as i guess the underlining C code is hard af)

    • @vinylSummer
      @vinylSummer 10 місяців тому +1

      Every programming language is a wrapper for machine code, if you really think about it

    • @benshulz4179
      @benshulz4179 10 місяців тому

      @@vinylSummer no. Machine code differs greatly based on compiler, platform, etc.

  • @ajflink
    @ajflink Місяць тому

    I tend to write list comprehension within list comprehensions.
    Also, fun fact, there are only dictionary, set and list comprehensions in Python and they all can have comprehensions nested within each other each other.
    The one mystery that I want explained is the following example:
    num1 = 1
    num2 = num1
    What on Earth is the point of doing that? As far as I can tell, the only thing it does is make num1 and num2 point to the same object making num2 redundant. I get annoyed whenever I come across this in someone else's code.

  • @rainymatch
    @rainymatch 6 місяців тому

    I totally love the video but the music is driving me crazy 😂. Of course, to each his own, the rest might like it, I just would like to have the option to listen to my own music or to go for silence whenever I feel! 😇 Anyway, thanks for the video, brilliant stuff. 👍

  • @MrRyanroberson1
    @MrRyanroberson1 9 місяців тому +1

    Consideration: what if you set t = result.append and call t? This should be much faster

  • @ABaumstumpf
    @ABaumstumpf 10 місяців тому

    This would suggest that the python compiler is incredibly stupid and intentionally underperforming if it has to load the same function for every loop iteration.
    But also your own data suggests that this explanation is bogus to begin with:
    You are showing a liner-liner graph and the data-points suggest a near constant 0.1 second time-difference (that even shrinks). So whatever the source of the difference is - it is only ever happening ONCE and not in a loop - cause otherwise the difference would be growing.

  • @arandomguy9474
    @arandomguy9474 8 місяців тому

    so its the append which fucks up stuff. i need to check out if using variable 'i' and not using any variable '_' makes a difference when working with large numbers. let me know your finding too brother!

  • @Voidead_
    @Voidead_ 10 місяців тому +115

    python is so cool real not fake.

    • @alang.2054
      @alang.2054 10 місяців тому +8

      List comprehension are not pythons idea

    • @Voidead_
      @Voidead_ 10 місяців тому +31

      @@alang.2054 python still cool not fake

    • @minkeymoo
      @minkeymoo 10 місяців тому +1

      Real

    • @skmgeek
      @skmgeek 10 місяців тому +1

      real

    • @afignisfirer4675
      @afignisfirer4675 10 місяців тому

      ​@@alang.2054So where did these ideas come from? What are other languages that employ list comprehension??

  • @NRG2k
    @NRG2k 8 місяців тому

    my_list = [*range(100)]
    is the actual way for [x for x in range(100)]

  • @workingguy3166
    @workingguy3166 9 місяців тому +1

    What font is that

  • @spacelem
    @spacelem 10 місяців тому +1

    I don't use Python, but Julia has this too, and it's amazing to use (especially with Julia's actual support for multidimensional arrays).

  • @prome666
    @prome666 10 місяців тому +1

    Thanks, I'm just a Python beginner but I find these videos what's happening in the background very interesting. Many times I wonder why it is doing this or that and the answer is some call stack or explanation like this.

  • @crides0
    @crides0 7 місяців тому

    How does the type specialization in python 3.12 change this?

  • @jacobrosen
    @jacobrosen 9 місяців тому +3

    I'd love to see if there were any difference if the list in the for loop example was preallocated. Usually, when increasing the size of a list eventually the lists memory has to be reallocated to a larger block, which of course takes some time. If the list was preallocated this step would be faster

    • @MG-xn4ug
      @MG-xn4ug 9 місяців тому +1

      Yeah, I'd be interested to know how a more typical optimized approach compares. In C, for instance, you'd allocate the array once with its known size, then loop to assign the values, which is simple memory assignment to a known address with no overhead of function calls. I wonder if looping through the list in python with element assignments would have similar or even better performance than the comprehension version, which still is going to run into reallocating memory.

    • @MG-xn4ug
      @MG-xn4ug 9 місяців тому +3

      So I went ahead and tested this theory. The exact sample functions in this video, plus a "preallocated" version which is initiated using a for loop. I evaluated for various values of N, stepped by 50K all the way up to lists of size 10M, 10 averaged samples per function.
      Results:
      ~0.1067 seconds per 1000000 elements for the for-append loop
      ~0.0800 seconds... for the list comprehension (~25% faster)
      ~0.0661 seconds... for the preallocated for-assign loop (additional ~17% faster)
      All of these scale very linearly with the size of list. So the C-style version gives pretty significant additional time savings, at least for this very simplistic task.
      P.S. The graph shown in the video is pretty nonsensical. If anything, it looks like it's showing a shallower coefficient for the for-append loop.
      Also, I timed things with time.process_time(). The video shows him using perf_counter(), which isn't great for showing code efficiency because it's the total elapsed runtime including any time the process spent sleeping.

    • @jacobrosen
      @jacobrosen 9 місяців тому +1

      @@MG-xn4ug thanks for taking the time to test it! Interesting how the for loop is now faster!

    • @bitzero000
      @bitzero000 8 місяців тому +1

      dude I knew this video was wrong. That's why I looked for this comment!

  • @ori61511
    @ori61511 10 місяців тому +1

    Actually in python 3.12 they made comprehensions about 2 times faster than 3.11

  • @arcanelore168
    @arcanelore168 8 місяців тому +1

    Your videos are very well crafted. Keep up the good work!

  • @0986rashmi
    @0986rashmi 4 місяці тому

    Thanks for explaining why behind in each snippets

  • @reisaki18
    @reisaki18 8 місяців тому

    you should test each function on a separate file for transparency.

  • @chachaji550
    @chachaji550 10 місяців тому +2

    First

  • @domenicfieldhouse5644
    @domenicfieldhouse5644 10 місяців тому +1

    I've heard comprehensions will become comparatively even better in 3.12

    • @megaing1322
      @megaing1322 10 місяців тому

      What is being optimized is more when comprehension are being called a lot. An individual comprehension's iteration (which is more or less what is being tested here) wont change that much.

  • @michawhite7613
    @michawhite7613 10 місяців тому +1

    This is interesting, although I always feel that if you're trying to do these sorts of optimizations to Python code, you've picked the wrong language

    • @AnthonyBerlin
      @AnthonyBerlin 10 місяців тому

      Sometimes it isn't possible to change language for various reasons and Python may be forced on you and your team, but it doesn't mean that performance never matters at all.

    • @K9Megahertz
      @K9Megahertz 10 місяців тому

      I feel the same way. I primarily use C++. I've done it for 30+ years. I don't understand why the industry has coughed up a language that does for the most part the exact same thing as C++ (Loops, arrays, variables, classes) just a lot lot slower... Why drive a Pinto when you can drive a Ferrari?
      Supposedly C++ is difficult... I don't get why people feel that way. I picked C up when I was 15ish by reading a book. I started picking up C++ a couple years later. This was long before UA-cam, Google, StackOverflow, Udemy, LeetCode.
      Just about every language boils down a few basic concepts.
      1) Sequential execution of instructions.
      2) Loops or conditional branching (JMP, JLE, GOTO, IF, WHILE, FOR, DO , etc.. it's all variants of the same concept)
      3) Storage in Memory, for example variables, (a , b, count, i, j, numDaysInMonth, numGoalsScored, x, y, z, etc..)
      4) Storage in Multiple chunks (bytes) of memory (malloc, alloc, new , free, delete, smartpointers, std::vector, lists, dictionaries, tuples, etc...)
      Now OO languages have things like classes, inheritance, polymorphism, but that stuff isn't overly complicated. Python has classes. Most of the time when I write Python, I use classes, I'm just used to it.
      It's all the same crap. I've programmed in LOGO, GW-BASIC, ASM, C, C++, C#, Visual Basic, Perl, Python and probably a few I'm forgetting. I stayed away from Java thankfully. All of these language boiled down to the same core concepts listed above, no matter what problem you were trying to solve.
      So... if you're going to spend a buttload of time writing a bunch of code, why not do it in a language that runs 30x faster??
      Honestly, If you have a language that has 3-4 different ways to do a for loop and they all have different performance characteristics that warrant making UA-cam videos about it. Well I think that's just a fundamental problem with the language itself and is something that really never should have ended up that way.

  • @superblaubeere27
    @superblaubeere27 9 місяців тому

    If your programming language does not support optimization not even the easiest inline, you should not care to much about micro-managing

    • @b001
      @b001  9 місяців тому

      Why not? I feel the opposite. Since Python is inefficient, why would you not try to cut costs where you can so you don’t compound its inefficiencies?

    • @MG-xn4ug
      @MG-xn4ug 9 місяців тому

      ​@@b001​Obviously you should always be optimizing your code wherever you can, so long as it doesn't incur an unnecessary cost in readability, maintainability, dev time, etc. So in cases like this exact example, where using list comprehension is faster basically for free, sure we should go for it.
      But don't lose sight of python's only real advantage. If what we care most about is efficiency, we should be programming in something lower level anyway. The main advantage of python is simple, readable code that can be written quickly without much focus on the implementation details. Recommending that people just use list comprehension over loops misses the point. List comprehension is often much less readable, especially in real-world situations where you're often doing more complex operations than "assign array[x]=x". That's a very real tradeoff that needs to be considered, especially when the minor overhead of an additional append() function call will have much less impact relative to the total runtime of more complex loop bodies.
      This recommendation isn't *wrong*, but it's overly simplistic and can have the negative side effect of encouraging people to write worse code for very minor performance gains in a language that is already highly non-performant. And it's not even the most efficient way to write this operation - see discussion elsewhere about how direct assignment into a pre-allocated list is more efficient by skipping the function call overhead (and memory re-allocations) entirely.

  • @pu239
    @pu239 10 місяців тому +1

    its not "SO" efficient though :)

  • @StereoSensation
    @StereoSensation 9 місяців тому

    "python" and "efficient" in the same sentence is crazy.

    • @PennyEvolus
      @PennyEvolus День тому

      Tell me ur shit at python without telling me ur shit at python

  • @uuonhs1531
    @uuonhs1531 9 місяців тому

    If you need performance you have to use numpy

  • @killerboyak
    @killerboyak 8 місяців тому

    Can someone tell me what IDE this is, I use Jupyter notebook.

  • @SlimeyPlayzOSE
    @SlimeyPlayzOSE 9 місяців тому

    I wonder how this performs compared to a list(map(lambda x: x, range(n)))

  • @dadajonjurakuziev
    @dadajonjurakuziev 10 місяців тому +1

    Great explanation, thank you

  • @ploughable
    @ploughable 8 місяців тому

    wow, super useful, I was always asked myself if there are performance differences...

  • @younessamr6802
    @younessamr6802 26 днів тому

    what about mapreduce

  • @claycreate
    @claycreate 5 місяців тому

    Can i do list(range(n)) ?

  • @aonodensetsu
    @aonodensetsu 10 місяців тому +1

    i write list comprehensions in multiple lines with indents so they're pretty readable even when decently complex

    • @gentlemanbirdlake
      @gentlemanbirdlake 10 місяців тому

      this is the way

    • @Eutropios
      @Eutropios 9 місяців тому

      Both Black and Ruff format it this way for you, so it's very readable

  • @tanmaypatel4152
    @tanmaypatel4152 7 місяців тому

    What font do you use? Looks neat

  • @kingki1953
    @kingki1953 10 місяців тому +4

    Just FYI:
    You can even use list/dictionary comprehension as parameter in object or function!

  • @gustavojuantorena
    @gustavojuantorena 10 місяців тому +1

    Great explanation!

  • @arduous222
    @arduous222 8 місяців тому

    What makes this video great and pleasant to watch is that your presentation is not dogmatic but analytic. There are some python programmers out there arguing you should avoid using for loops because they are "not pythonic" and "not good for readibility". But you a made pretty clear case why in python list comprehension is better than for loop, and provided a balanced view in terms of readibility.

  • @ambervanraak
    @ambervanraak 10 місяців тому

    Why doesn't the python compiler detect you're only using the for loop to append and change the bytecode to a list_append instruction?

  • @Wraith0100
    @Wraith0100 9 місяців тому

    I learnt list comprehension like 2 days ago, though im new and it gets confusing sometimes
    But! Its so cool and i love it

  • @column.01
    @column.01 9 місяців тому

    I have one friend who insists on using list comp for everything even if it makes the code nearly unreadable in the long run. He's not dealing with large enough lists for list comprehension to really matter speed wise and just does it cause he can

  • @thegeek786
    @thegeek786 8 місяців тому

    How to plot like this?

  • @digitalmachine0101
    @digitalmachine0101 9 місяців тому

    Good information

  • @ihandjikanasser3713
    @ihandjikanasser3713 10 місяців тому

    Nice video, But to my side, the list comprehension is taking more time than the for loop.

  • @as4yt
    @as4yt 10 місяців тому

    I would say "somewhat more efficient".

  • @sergiorubencampero8479
    @sergiorubencampero8479 10 місяців тому +1

    Great!! 👍👍👍

  • @JosephLovesPython
    @JosephLovesPython 10 місяців тому +3

    Great video, and awesome animations!
    To further prove the point in the video one could do the following:
    def for_loop_preloaded(n):
    my_list = []
    # pre-load a reference to the append method as to avoid the "LOAD_METHOD" within the for loop
    append_method = my_list.append
    for x in range(n):
    append_method(x)
    return my_list
    Testing this we can see that it's quite faster than the "for_loop" function but still slightly slower than list comprehensions!

    • @epsi
      @epsi 10 місяців тому

      That's because it still needs to perform a lookup for the "append_method" variable each time, unlike a list comprehension that creates and uses an anonymous list (which is typically stored in a variable and/or used as a function argument after the list is complete).

  • @HoSza1
    @HoSza1 10 місяців тому

    pyfficient

  • @HamzaAli-pg7ju
    @HamzaAli-pg7ju 10 місяців тому

    How did you make that graph? Did you make it on pythyor any other thing?

  • @VIIben
    @VIIben 10 місяців тому

    Theme?

  • @rikschaaf
    @rikschaaf 10 місяців тому +1

    I'm surprised that the append method isn't just inlined to prevent the need for a method call. I assume that append does something similar to just the LIST_APPEND op code, so such a small method should be optimized. Java is similarly high level, with compiling to byte code and running on a virtual machine (the JVM), but it optimizes method calls vs inlining automatically during compilation, based on the method's complexity. In a couple of other languages that run on the JVM, you can even specify explicitly if you want to inline a method or not (with some added benefits surrounding generics)

    • @Belissimo-T
      @Belissimo-T 10 місяців тому +2

      `list.append` is implemented in C. I don't see how this can be inlined. Also, it's difficult to prove that `my_list` is actually of type `list`, even though we declare it as such above. That's partly because Python doesn't have a static type system contrary to Java and `my_list` could get modified through, for example, threads.

    • @megaing1322
      @megaing1322 10 місяців тому +1

      Java is not similarly high level, it gives you way more control. Most notably, java is statically typed, Python isn't. The compiler can't know that the variable is actually a list, so it ain't be inlined. If you want stuff like that, look at Cython.

    • @ABaumstumpf
      @ABaumstumpf 10 місяців тому

      @@megaing1322 "Java is not similarly high level, it gives you way more control."
      it is just as high-level if not more. Having more control doesn't make it any less highlevel. Being incredibly slow and without checks is NOT a trade of highlevel-languages.

    • @megaing1322
      @megaing1322 10 місяців тому

      @@ABaumstumpf higher level = further from the actual CPU. In Java, you have direct accesses to varies low level types like different int sizes, a choice between float and double and arrays are exposed way more directly than in python. Yes Python is higher level than Java. That doesn't say anything about the quality of either. But are ofcourse still high level language, anything at a level of C or above is.

    • @ABaumstumpf
      @ABaumstumpf 10 місяців тому

      @@megaing1322 "In Java, you have direct accesses to varies low level types like different int sizes, a choice between float and double and arrays are exposed way more directly than in python. Yes Python is higher level than Java."
      No, that shows that python is a dynamically typed language. and that was a thing even 50 years ago in some low-level languages.
      The concept of high/low-level only makes sense when talking about which operations and idioms a language supports.
      Python does not support low-level programming, Java also not really, C++ does.
      python does support high-level abstractions, so does Java, so does C++.
      And no, not "anything above C" cause C is also high-level depending on the environment and what you are doing. Not as highlevel as many modern languages of course, but you are no longer restricted to bare-to-the-metal code.
      And btw: java has arbitrary precision numbers, and Python has floats (which usually are just C doubles) and complex (2 "floats"), and until Python3 it also had 2 integral-types.
      having more options available does not "make" a language lower-level.

  • @spicefiend
    @spicefiend 10 місяців тому

    How did you get experience on python internals?

  • @Doppel95
    @Doppel95 9 місяців тому

    Do you recommend using a for-loop instead of a list-comprehension for more complex tasks just for the sake of readability or is there some trade-off at some point?

  • @felixwhise4165
    @felixwhise4165 10 місяців тому

    please do more of these under the hood videos, very interesting

  • @sayanghosh6996
    @sayanghosh6996 10 місяців тому

    0:35 just do return list(range(n))

  • @VyctorDaCostaMagalhaes
    @VyctorDaCostaMagalhaes 10 місяців тому

    Nice video, thanks for that! Where can I look for "best practices" or how to write more efficient code? I'm learning about these topics in Pyhton now, but it's very hard to find libraries and content...

  • @xllAyato
    @xllAyato 10 місяців тому +8

    I think that it might have to do with array resizing. I do not know so much about python but in C/C++ it takes a lot longer to create a new array an refill it than creating an oversized one and just adding to the corresponding index.

    • @megaing1322
      @megaing1322 10 місяців тому +9

      No, that doesn't happen here. It would in theory be possible, but as you can see from the bytecode sequence, none of those preallocate elements. `list.append` ofcourse is smart enough to correctly scale preallocation to make append O(1), but that is not a difference between the two versions. However, this would happen for example if you call `list(range(n))` instead.

    • @lucass8119
      @lucass8119 10 місяців тому

      @@megaing1322 Yes, the cost here is the function call. Most compilers will inline the function call in contexts like this. I know in C++ most compilers would inline this function when used in a for loop, especially if the function is a template. It's a little strange the Python compiler chooses not to inline this. But, then again, usually these JIT type scenarios do very little optimizations. And I imagine the dynamic typing of Python might force this to not be inlined

    • @megaing1322
      @megaing1322 10 місяців тому

      @@lucass8119 You clearly have no idea how python works. It isn't possible for the compiler itself to inline list.append. And CPython (which is what is being talked about) currently has no JIT compiler.

    • @ABaumstumpf
      @ABaumstumpf 10 місяців тому +1

      @@lucass8119 " the cost here is the function call."
      At least the data from this video would heavily imply - No, that is not correct and not the source of the differing performance:
      Here the 2 lines are almost parallel with a constant offset (the for-loop even slowly catching up). That can not be the result of an overhead that is incurred repeatedly

    • @lucass8119
      @lucass8119 10 місяців тому

      @@ABaumstumpf The overhead isn't incurred repeatedly, its a constant time factor. Therefore, the two lines being parallel makes perfect sense.
      Its not like the second function call is more expensive than the first and so on. Each are equally expensive (theoretically) so the lines should be perfectly parallel, with the one with a function call being slightly slower. Both are O(n), they should be parallel.
      We know it has to be the function call, because look at the disassembly. That's the only difference.

  • @Alguem387
    @Alguem387 10 місяців тому

    import dis as nuts

  • @dSupertramp
    @dSupertramp 10 місяців тому

    What library did you use to create the plot?