Learning Art Using Python and Anki

Let’s learn art by transforming The Art Book into a spaced-repetition Anki Deck. Step 1: Download The Art Book Get the PDF of this book and save it as TheArtBook.pdf Step 2: Make an image of … Read more

Similar

This post is not about Python

Pure Python is generally a slow language. Written for performance, it will often be around 40-50 times slower than C, and Python “written for performance” is Python that is very straightforward and does not use many of its features. Python code that has a... (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 »