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… Read more

Similar

The Case Against Python 3

This document serves as a collection of reasons why beginners should avoid Python 3 as of November 22nd, 2016. I give two sets of reasons as I see them now. One for total beginners, and another for people who are more knowledgeable about programming. Th...

Read more »