Code on Repeat: Using For and While Loops in Python
Loops are traditionally used when you have a block of code which you want to repeat a number of times based on a fixed number or a Boolean condition.
Control Your Code: Conditional Logic in Python
In this article, I explain how you can expand your Python applications by using conditional logic and operators, including the if, else and elif clauses.
Explaining Comparison Operators in Python
Learning about comparison operators is essential in Python, because it enables the usage of conditional logic. I'll explain the usage of all comparison operators in this article.
Using the Input Function To Get User Input in Python
It's essential to get user input, even on the most basic of applications. In Python, getting user input can be quite straightforward. However, there are some interesting complications.
Static and Dynamic Typing: What’s the Difference?
In Python, you can create a variable and make it an integer. You can then take that same variable and make it a String. You can't do this in Java. Why not?
Getting Started With Python: Numbers and Operators
When learning a new programming language, one of the first things you'll do is learning about operators. Python is no different!
Learning the Windows PowerShell Fundamentals
Windows PowerShell is a very powerful tool when using Windows and especially as a programmer. In this post, I teach you the fundamentals and something extra.