Tuple

Passing External Arguments into Python Functions

From a previous post on Python Functions, we can look into how we can pass external arguments into Python functions.  This will take our code and turn it into reusable chunks of code.  Therefore this is good for a few reasons: Passing Arguments into Python Functions With functions, you can pass outside arguments into them. […]

Passing External Arguments into Python Functions 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 »