Skip Navigation
Why can't I append to list inside of a list comprehension?
  • A list comprehension is used to convert and/or filter elements of another iterable, in your case a range but this could also be another list. So you can think of it as taking one list, filtering/converting each element and producing a new list as a result.

    So there's no need to append to any list as that's implicit in the comprehension.

    For example, to produce a list of all squares in a range you could do:

    [x*x for x in range(10)]
    

    This would automatically "append" each square to the resulting list, there's no need to do that yourself.

  • Deleted
    ...
  • Common Lisp. I really enjoy the interactive development experience and the language itself (and macros). I feel though that the ecosystem isn't very active and so existing libraries are often unmaintained which is a shame.

  • NSFW Deleted
    *Permanently Deleted*
  • "...You know, as a writer, if you took away my paper, I would write on my heart. If you take away my ink, I'd write on the wind. (Pauses) It wouldn't be an ideal way to work." - Garth Marenghi

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PO
    polaris64 @lemmy.sdf.org
    Posts 0
    Comments 10