鱼C论坛

 找回密码
 立即注册
查看: 2112|回复: 1

[已解决]第44讲,计时器的问题,为什么直接把localtime()替换为perf_counter()不可以呢

[复制链接]
发表于 2019-7-10 19:06:47 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
报错内容:
Traceback (most recent call last):
  File "<pyshell#125>", line 1, in <module>
    t.stop()
  File "D:/untitled/44_.py", line 40, in stop
    self.__calc()
  File "D:/untitled/44_.py", line 47, in __calc
    self.lasted.append(abs(self.end[index] - self.begin[index]))
TypeError: 'float' object is not subscriptable

我的代码(其实就是鱼老师上课讲的,我只是做了时间模块函数的替换)


#计时器
import time
class Mytimer:
    def __init__(self):
        self.unit = ['年','月','日','时','分','秒']
        self.prompt = "未开始计时"
        self.begin = 0
        self.end = 0
        self.lasted = []
        
        
    def __str__(self):
        return self.prompt

    __repr__ = __str__

    def __add__(self,other):
        prompt = "总共运行了:"
        result = []
        for index in range(6):
            result.append(self.lasted[index] + other.lasted[index])
            if result[index]:
                prompt  +=(str(result[index])+self.unit[index])
        return prompt
               
            
    def start(self):
        self.begin = time.perf_counter()
        self.prompt = "提示:请先调用stop()停止计时"
        print("计时开始")
        
    def stop(self):
        
        if not self.begin:
            print("提示:请先调用start()开始计时")
        else:
            self.end = time.perf_counter()
            self.__calc()
            print("计时停止")
    def __calc(self):
        self.lasted = []
        self.prompt = "总共运行了:"
        for index in range(6):
            
            self.lasted.append(abs(self.end[index] - self.begin[index]))
           
            if self.lasted[index]:
                self.prompt += (str(self.lasted[index]+self.begin[index]))
        self.begin = 0
        self.end = 0
        




   
最佳答案
2019-7-10 19:27:54
localtime()的结果是一个元组,perf_counter()的结果是一个浮点数,不能直接替换。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-7-10 19:27:54 | 显示全部楼层    本楼为最佳答案   
localtime()的结果是一个元组,perf_counter()的结果是一个浮点数,不能直接替换。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 06:25

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表