This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| #This variable is for any calculator that requires a list of numbers | |
| nums = [.10,.20,.40,.80,1.13] | |
| class AverageCalculator: | |
| def __init__(self): | |
| self.sums = sum(nums) |