this post was submitted on 22 Nov 2023
294 points (100.0% liked)

196

16293 readers
37 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS
 
all 45 comments
sorted by: hot top controversial new old
[–] InEnduringGrowStrong@sh.itjust.works 57 points 10 months ago (4 children)

I mean this would remove False and None from a list though.

[–] lugal@sopuli.xyz 37 points 10 months ago

Also 0 and empty strings

[–] bleistift2@feddit.de 30 points 10 months ago

And empty lists, tuples, dictionaries, sets, and strings

[–] joyjoy@lemm.ee 24 points 10 months ago* (last edited 10 months ago)

results = list(filter(None, results))

[–] LostXOR@kbin.social 3 points 10 months ago (1 children)

results = [result for result in results if result != None]

[–] naught@sh.itjust.works 22 points 10 months ago (1 children)
[–] LostXOR@kbin.social 3 points 10 months ago (1 children)

You're right, though IIRC there's no functional difference when comparing to None (other than speed).

[–] AVincentInSpace@pawb.social 9 points 10 months ago

Yes there is. One invokes __ne__ on the left hand side, the other performs an identity comparison.

[–] drew_belloc@programming.dev 43 points 10 months ago
[–] bleistift2@feddit.de 39 points 10 months ago (1 children)

Meanwhile in Java land:

Map map = new Map()
[–] Korne127@lemmy.world 24 points 10 months ago (1 children)

Map is an interface though, you'd have to use HashMap 😅

[–] bleistift2@feddit.de 10 points 10 months ago (1 children)
[–] metaStatic@kbin.social 8 points 10 months ago

Should have used memory safe rust.

nailed it

[–] frezik@midwest.social 33 points 10 months ago (3 children)

People used to argue that Python was incredibly readable. Then I started seeing shit like this.

[–] stebo02@sopuli.xyz 25 points 10 months ago (1 children)

I'd say this is pretty readable

[–] frezik@midwest.social 7 points 10 months ago (1 children)

It jams far too much on one line. Break it up. It's a mistake I see a lot on Python.

[–] stebo02@sopuli.xyz 3 points 10 months ago (1 children)

but if you do it as a for loop it would be slower

[–] frezik@midwest.social 2 points 10 months ago (1 children)

Unless you're looping over more than a million elements, that's a poor excuse.

[–] stebo02@sopuli.xyz 3 points 10 months ago

or you're doing this a million times

[–] addie@feddit.uk 14 points 10 months ago

I think that Python has a bit of a 'Microsoft Word' thing on the go. You know how your own docs are completely editable and print fine, but everyone else's are a complete fucking disaster and pressing a single key will screw up the formatting of the whole document? Your own Python code is full of sensible idioms and pragmatic naming conventions, but everyone else's was plainly written while on mushrooms.

[–] lunarul@lemmy.world 11 points 10 months ago

I don't know python, but it's clear what that line does

[–] AngrilyEatingMuffins@kbin.social 24 points 10 months ago (1 children)

The image you've uploaded is a humorous take on a programming practice common among Python developers. It shows a list comprehension, which is a concise way to create lists in Python. The joke is that nobody prompted the Python programmers to use a complex or sophisticated feature, yet they are using it anyway, which implies that Python programmers tend to use list comprehensions frequently and perhaps even when they are not strictly necessary. List comprehensions are a popular feature in Python because they can make the code more readable and expressive, and this meme plays on the idea that Python programmers might be eager to use them at every opportunity.

[–] nautilus@lemmy.dbzer0.com 35 points 10 months ago (1 children)

Has someone finally just given ChatGPT a Lemmy account?

[–] AngrilyEatingMuffins@kbin.social 8 points 10 months ago (1 children)

i think there actually is one i just copy pasted for the meeeem

[–] nautilus@lemmy.dbzer0.com 3 points 10 months ago

Good lord, it’s gained sentience

[–] riodoro1@lemmy.world 23 points 10 months ago (1 children)

Python has great list comprehension. Too bad it’s incomprehensible to humans.

But seriously whoever writes those cool oneliners is a shitty programmer. Life is not code golf, fuck off with your smart ass.

[–] Bonsoir@lemmy.ca 13 points 10 months ago* (last edited 10 months ago)

What would be the alternative? (assuming that you want to do the loop yourself)

new_results = []
for result in results:
    if result:
        new_results.append(result)
results = new_results

or else

for result in results:
    if not result:
        results.remove(result)

which doesn't do the exact same thing.
Honestly, this list comprehension is much faster to read and quite easy to understand.
I think we could rename the "result" variable "x" or "res" and it would be less confusing though.

[–] Gork@lemm.ee 18 points 10 months ago

[ L I S T C O M P R E H E N T I O N ]

[–] Synthead@lemmy.world 14 points 10 months ago (2 children)

Ruby has a method for this :)

[1] pry(main)> vars = ["one", "two", nil, "three"]
=> ["one", "two", nil, "three"]
[2] pry(main)> vars.compact
=> ["one", "two", "three"]

In Ruby, 0 and "" is truthy, so this would be a little different than the Python interpretation. You could filter with #select, but you'd typically write your code around this instead.

[–] CoderKat@lemm.ee 19 points 10 months ago (3 children)

In Ruby, 0 and "" is truthy,

What the fuck?

[–] diemartin@sh.itjust.works 8 points 10 months ago

Lua is the same. Only false and nil are "falsey".

I remember I fixed a bug in a mod for Minetest that assumed 0 was false and caused an infinite loop.

[–] DarkenLM@kbin.social 4 points 10 months ago

And people bash Javascript as if it was the devil when thinks like this exist on other languages.

[–] Synthead@lemmy.world 4 points 10 months ago* (last edited 10 months ago) (1 children)

Yup :) Everything in Ruby inherits Object, too. It's a really neat language, and when you get accustomed to it, you might wonder why some other languages aren't written like it.

For the 0 value being truthy, consider that Ruby is a dynamic language. Imagine if you asked a user how many motorcycles they own. If they answer, you'll have an Integer. If they don't, you'll have nil, from NilClass. 0 is just as valid of an answer as 2, so you can do something like this:

raise NoResponse unless motorcycles

save_motorcycles(motorcycles)
[–] calcopiritus@lemmy.world 2 points 10 months ago

Python also has about 9000 alternatives that are better than this.

Allowing anything other than variables, number literals, and ':' inside list indices was a mistake.

[–] itslilith@lemmy.blahaj.zone 13 points 10 months ago* (last edited 10 months ago) (1 children)

It does! it takes a list (or other iterator) and filters out all values that are cast to boolean True. The same could be archived with

results = list(filter(bool, results))
[–] kakes@sh.itjust.works 12 points 10 months ago (2 children)

It would filter out values that cast to False, no?

[–] lugal@sopuli.xyz 4 points 10 months ago

Like None, 0, "", ...

[–] itslilith@lemmy.blahaj.zone 2 points 10 months ago

i wasn't sure how to phrase it, it keeps all values that cast to True, and discards all that cast to False

[–] mvirts@lemmy.world 12 points 10 months ago

I've written this more times than I can remember 😹 who needs filter anyway? Gotta use up all this ram.

[–] Nevoic@lemm.ee 9 points 10 months ago* (last edited 10 months ago)

Python's disdain for the industry standard is wild. Every other language made in the last 20 years has proper filtering that doesn't require collecting the results back into a list after filtering like Java (granted it's even more verbose in Java but that's a low bar).

If Python had modern lambdas and filter was written in an inclusion or parametric polymorphic way, then you could write:

new_results = results.filter(x -> x)

Many languages have shorthands to refer to variables too, so it wouldn't be impossible to see:

new_results = results.filter(_)

Of course in actual Python you'd instead see:

new_results = list(filter(lambda x: x, results))

which is arguably worse than

new_results = [x for x in results if x]
[–] riquisimo@lemmy.world 5 points 10 months ago
[–] pomodoro_longbreak@sh.itjust.works 4 points 10 months ago

hey if you can think of a better way

[–] Toes@ani.social 3 points 10 months ago

Looks like something I'd write while high

[–] catfish@programming.dev 2 points 10 months ago