The `print()` function takes the following arguments:
π *objects - Stuff to print
π sep=' ' - A string to separate object
π end='\n' - A string to end on
π file=sys.stdout - Where to write the data
π flush=False - Whether or not to force flush the stream
Let's look at some examples of using Python's `print()` function: