Mike

Python Statements Overview and Comparison Operators

We are now crossing into a new plateau when it comes to programming. The last few posts were to lay the foundation of what out-of-the-box data types Python has and how you can work with them. We barely scratched what you can do with each Python data type. The previous posts just gave you an

Python Statements Overview and Comparison Operators Read More »

Python Tuples

Python tuples (type tuple) are the next Python Data Types we will explore. Python tuples are similar to lists except that they are immutable, which means they can not be changed.  Tuples are wrapped in ( ) parentheses. This might look familiar from the dictionary post when we used the dictionary method .items(). The output of

Python Tuples Read More »