this post was submitted on 25 Oct 2024
307 points (100.0% liked)
TechTakes
2288 readers
82 users here now
Big brain tech dude got yet another clueless take over at HackerNews etc? Here's the place to vent. Orange site, VC foolishness, all welcome.
This is not debate club. Unless it’s amusing debate.
For actually-good tech, you want our NotAwfulTech community
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
the
for x in ystatement takes iterableyand assigns a value from it toxper iteration (loop), so what happens is that it's reassigningchosen_chareach loop to the next item from the sentence(
sum([x for x in sentence if x == chosen_char])would be a quick one-liner, presuming one has downcased the sentence and other input/safety checks)(e: this post was in response to your 2-liner comment in the code)