Using classes:


1) create a Python program class that will add two numbers and print the result

2) create a Python program class that will add two numbers and return the result

3) Write Python program classes for a simple calculator that can perform
   addition, subtraction, division and multiplication.


   * hint user supplies two numbers and the program will ask what function to perform.



Dictionary:

4) create a Python program that uses a dictionary to store 
    an employees name, position, salary, and start date.
    * add a new field to the dictionary...
    * remove one of the other fields for the dictionary...

5) create a Python program that uses a dictionary to store 
    an employees name, position, salary, and start date.
    

6) create a Python program class that will uses a dictionary to store 
    an employees name, position, salary, and start date.

imports:

7) create a Python program which imports your previous classes to perform the calulator.

8) create a Python program which imports your previous classes to manage your employee.

9) create a Python program which imports your previous classes "calculator & employee"
   to calulate raises and paycuts for the employee.

 