@[email protected] to Programmer [email protected] • 8 months agoI redid the meme with what hurts melemmy.worldimagemessage-square57fedilinkarrow-up1466cross-posted to: [email protected][email protected]
arrow-up1466imageI redid the meme with what hurts melemmy.world@[email protected] to Programmer [email protected] • 8 months agomessage-square57fedilinkcross-posted to: [email protected][email protected]
minus-square@[email protected]linkfedilink3•7 months agoas a complete layman and hobbyist i also personally think that “more pythonic” coding can sometimes be more confusing. I dont think any beginner reads “j for j for i in k” and instantly gets it. maybe unpopular opinion idk
minus-square@[email protected]linkfedilink3•edit-27 months agoAnything that’s not an integer or a range doesn’t belong inside []. Much more readable to use zip, map, filter, etc. And more powerful. EDIT: that was meant for indexing lists. Strings inside [] for indexing ducts are fine.
as a complete layman and hobbyist i also personally think that “more pythonic” coding can sometimes be more confusing.
I dont think any beginner reads “j for j for i in k” and instantly gets it.
maybe unpopular opinion idk
Anything that’s not an integer or a range doesn’t belong inside
[]
. Much more readable to use zip, map, filter, etc. And more powerful.EDIT: that was meant for indexing lists. Strings inside
[]
for indexing ducts are fine.