Code Monkey home page Code Monkey logo

Comments (3)

gtback avatar gtback commented on June 12, 2024

Note that some people think a listcomp is more idiomatic than filter, so it's debatable whether the latter examples should be changed. The former ones should, however.

from cti-python-stix2.

chisholm avatar chisholm commented on June 12, 2024

If the iterable is a sequence which supports slicing, the first can more compactly be done as:

list_copy = original_list[:]

(of course,be sure a shallow copy is what you are after.) For the second, I much prefer the comprehension. Also for the latter (and in general), I prefer a generator expression, if you can get away with it. I think you should try not to make copies or intermediate lists (or other data structures) unnecessarily.

(P.s. I haven't actually searched the code to understand what contexts these constructs occur in.)

from cti-python-stix2.

gtback avatar gtback commented on June 12, 2024

I've always used list(X) to consume a generator rather than X[:] (it also helps ensure the iterable is a list, if that's desired, rather than keeping the same iterable type). I'm not sure which more common/accepted/idiomatic, though.

I also agree that, where possible, generator expressions are preferable to list comprehensions, unless you need the list.

from cti-python-stix2.

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.