Elektrine lite

← Feed

@jimgar@hachyderm.io

Post #2273809

2026-05-07 07:22 UTC

@bmaxv@noc.social @eliocamp@mastodon.social Just FYI, “Don’t do x” without saying what else to do, or why not to do it, leaves everyone except you in the dark.

Replies (1)

  • @bmaxv@noc.social 2026-05-07 08:30

    @jimgar@hachyderm.io @eliocamp@mastodon.social That is true. Personal opinion: I don't like list comprehensions. Mostly because they allow the constructions of foot guns and people then saying "see, python is so complicated". The (imo) correct solution is to: def get_cwd_files(): my_files = [] for filename in os.listdir(): my_files.append(f"{os.get_pwd()}/{filename}") return my_files And then just use that function. get_cwd_files() But... (1/2)

    Open ##2273810