All posts by Vern

Learn Python Visually with Penjee

Learn Python Visually with Penjee Two of the biggest ways that Penjee makes learning to code in Python are Visual Python coding the ease of setting up your coding environment (you don’t need to set up an IDE like Sublime Text for instance) Let’s look at  point #1 in more depth. There are two main ways that … Continue reading Learn Python Visually with Penjee →

VIM editor Cheat Sheet for Beginners

VIM Cheat Sheet for Beginners Verbose vs Shortcuts Vim provides a short cut and a verbose version of every command.  For instance, you can type the short cut version of the edit command [crayon-6629f98ea050e925454242/] or you can type the verbose version of the exact same command by typing [crayon-6629f98ea0519474252859/] Now, the way that we will … Continue reading VIM editor Cheat Sheet for Beginners →

argument vs parameter[Solved]

What is the difference between an argument and a parameter?[solved] -A common question asked by beginning programmers and , often times, you’ll often hear experienced programmers interchange these two words, but there is a difference. Parameters are the formal variables defined in a function/method header. Arguments are the actual value sent to the function has … Continue reading argument vs parameter[Solved] →