Пример #1
0
    def get_times(self, index=None):
        times = []

        if index is None:
            for time in self.timed_run:
                times.append(time.total())
        else:
            times = self.timed_run[index]
        return times
Пример #2
0
    def get_times(self,index=None):
        times = []

        if index is None:
            for time in self.timed_run:
                times.append(time.total())
        else:
            times = self.timed_run[index]
        return times    
Пример #3
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
Пример #4
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total
Пример #5
0
 def average(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total / len(self.timed_run)
Пример #6
0
 def total_timed(self):
     total = 0
     for time in self.timed_run:
         total += time.total()
     return total