kibekibeworld.hashnode.dev·May 12, 2023Bionic readingThe image above is an example of bionic reading. It works by highlighting the first few letters of each word in a text, which helps to guide your eyes(read faster) and improve your comprehension. This is fascinating to me: It was invented in 2016 by ...36 readsOf lifecomprehension
Russ Ebytongere.hashnode.dev·Oct 12, 2022Python: Generator ComprehensionComprehensions come in many flavors. Using [ ] we get lists. Using { } we can make dictionaries or sets. You might think that ( ) will make a tuple. Instead, you'll get a generator. A generator is an object that we can iterate through. But unlike a l...74 readsPython ComprehensionsPython
Russ Ebytongere.hashnode.dev·Oct 8, 2022Python: Set ComprehensionsIn earlier posts we covered Dictionary Comprehensions and List Comprehensions. As you probably have guessed, the biggest difference with a Set Comprehension is we're creating a Set instead. Since the List and Set being so similar, using that post as ...131 readsPython ComprehensionsPython
Karan Parekhkaranparekh.dev·Jul 8, 2022Python comprehensionsFor most cases, python comprehensions are a substitute for simple for loops. Are comprehensions faster than for loops? Yes, but that probably won't matter, unless you have absolutely exhausted all the other possible ways to optimize your code. Even t...53 readsPython