Lab 1
Objectives:
- Familiarize ourselves with the Python interpreter
- Write simple python programs to practice python expressions, variables, and getting user input.
Calculating an average
Write a program that receives three numbers as input from the user, and displays that average of the three numbers.
Calculating interest
Write a program that receives as input the annual interest your savings account provides you (in percent), an amount of money, and the number of years. It then calculates the total amount you will have after that many years.
In each program include a comment at the top of the file that explains what the program is supposed to do.
