Category Archives: Computer Science

Loop Animated Gifs in Python

Explaining loops to someone who has never programmed before can be quite challenging. In fact, one of the  main goals of Penjee is to decrease the friction students typically feel when they first learn to hand code. One of the primary lessons that students must try to wrap their heads around is –  “What is a … Continue reading Loop Animated Gifs in Python →

Why Learn Python as Your First Programming Language?

Why Learn Python as Your First Programming Language? So, you decided you want to learn programming, congratulations! You are about to begin a journey that , I hope, is as stimulating and rewarding for you as it was for myself! But the first question is–Which programming language should you first learn?? We thought long and … Continue reading Why Learn Python as Your First Programming Language? →

How to Remove Element from Java Array

The AP Computer Science A exam often asks students to resize an array, typically by removing some stuff from the array, stuff that doesn’t meet some kind of criteria. I have already gone over an AP styled question  here on this, but let’s now look at some more intuitive code for removing an element from … Continue reading How to Remove Element from Java Array →