Lab Pi Series
This lab is to be done on your own.
Pi can be calculated with an infinite series:

Create a python module named piseries.py that does the following:
- Comments at the top of the module with your name, date, and description.
- Calculate Pi out to the 10,000,000th (10 millionth) term.
- Print the result (computed answer) based on your calculation
using the series π/4 = 1 - 1/3 + 1/5 - 1/7 + 1/9 - ... + 1/19,999,997- 1/19,999,999
- Note: you do not need to print the constant π (3.141592653589793), that is just for reference.
Submit this program two ways:
- As a .py code file.
- As a screenshot in .jpg or .png format showing the program code and output. Make sure you capture your entire desktop.
The image below shows an example run of the program.
