Using the with Operator
Files in python can be handled in a simpler way using the with operator.
We'll cover the following...
Python has a neat little builtin called with which you can use to simplify reading and writing files. The with operator creates what is known as a context ...