Comments are a line of code that gets ignored by the Python interpreter. How useful can this be? Very! Comments
Read moreLatest Posts
Libraries, Python’s Superpower – Python Like a Pro #14
Perhaps the most powerful feature of Python is the ability to import libraries, which greatly expand the utilities at a
Read moreLambda, Sort, None Type, Comprehensions – Python Like a Pro #13
Python boasts many unique built-in utilities that are extremely powerful, and every novice programmer ought to know how to use
Read moreClasses – Python Like a Pro #12
Classes are the ultimate evolution of object-oriented programming. A class is a programmer’s very own custom object! That’s right, as
Read moreGenerators – Python Like a Pro #11
The generator looks similar to a function on paper, but has a few qualities that make it stand out, and
Read moreRecursion – Python Like a Pro #10
Recursion is a technique in which a function can call itself, opening another instance of that function within the current
Read moreFunctions – Python Like a Pro #9
Functions are a programmer’s means of fulfilling the Don’t Repeat Yourself (DRY) principle, arguably the golden rule of programming. Functions
Read moreIteration – Python Like a Pro #8
Iteration is a special type of loop; it is a clean means by which a programmer can precisely control the
Read moreIf and While (Control Structures) – Python Like a Pro #7
Two elementary yet universal control structures are the if / else statement and the while loop. The if statement allows
Read moreDictionaries – Python Like a Pro #6
The dictionary is another of Python’s unique data types that is an incredibly powerful tool for any programmer. Dictionaries allow
Read more