The Journey to Replace Python’s Parser [audio]

An interview with Pablo Galindo and Lysandros Nikolaou about their work to replace CPython’s parser and the benefits that it provides for the future evolution of the language. Read more

Similar

Python and Lambdas

I come from a functional programming background, so I a lot of love for functions and so-called anonymous functions or lambdas. However, I have realised that I don't make use of Python's lambda syntax... (more…)

Read more »

How to Remove Vowels with Python

The challenge Create a function called shortcut to remove all the lowercase vowels in a given string. Examples Don’t worry about uppercase vowels. Test cases The solution in Python Option 1 (long way): Option 2 (using translate): Option 3 (using join): Op... (more…)

Read more »