Git Product home page Git Product logo

Comments (7)

adewes avatar adewes commented on July 17, 2024

Sounds great, can you write a draft for this (have a look at a rst file to see how the anti-patterns are structured)?

from python-anti-patterns.

AN3223 avatar AN3223 commented on July 17, 2024

For sure, here's a draft of it: https://gist.github.com/AN3223/344d27279be6ee87e13c5fadf1af756d

Apologies for the procrastination!

from python-anti-patterns.

dejanbatanjac avatar dejanbatanjac commented on July 17, 2024

The best for this example would be to use:

xs=(1, 2, 3, 4)
xs=[*xs]
xs # [1,2,3,4]

as [] is faster than list()

from python-anti-patterns.

tucked avatar tucked commented on July 17, 2024

I'm not sure about that:

$ python3 -m timeit -n 1000 -s 'x = range(1000000)' -- 'list(x)'
1000 loops, best of 5: 68.1 msec per loop
$ python3 -m timeit -n 1000 -s 'x = range(1000000)' -- '[*x]'
1000 loops, best of 5: 68.3 msec per loop

FWIW, I would probably consider list() more readable anyways.

from python-anti-patterns.

dejanbatanjac avatar dejanbatanjac commented on July 17, 2024

@tucked, let it got with the list(), my tip was based on https://stackoverflow.com/questions/30216000/why-is-faster-than-list analysis.

from python-anti-patterns.

tucked avatar tucked commented on July 17, 2024

Yes, but I suspect after a certain point, as in my example, overhead is essentially negligible compared iteration over x. Even at small scale, I would not consider the performance boost significant enough to warrant the sacrifice of readability:

$ python3 -m timeit -n 1000000 -s 'x = range(1000)' -- '[*x]'
1000000 loops, best of 5: 44.7 usec per loop
$ python3 -m timeit -n 1000000 -s 'x = range(1000)' -- 'list(x)'
1000000 loops, best of 5: 57.2 usec per loop

I would call this premature optimization, but, you know, that's just, like, my opinion, man.

from python-anti-patterns.

dejanbatanjac avatar dejanbatanjac commented on July 17, 2024

@tucked, using list() is just fine. :)

from python-anti-patterns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.