- verify that you are getting an understanding of Python by doing the following:
- create a list of the integers from 1 to 10
- use a for loop to print each integer in the list and its square to the screen like this:
x=1, x**2=1
x=2, x**2=4
...
(note that Python uses ** instead of ^ for exponentials)