鱼C论坛

 找回密码
 立即注册
查看: 1779|回复: 2

[已解决]魔法方法:简单定制 问题求助

[复制链接]
发表于 2020-11-27 15:29:30 | 显示全部楼层 |阅读模式

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

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

x
在看小甲鱼的第44讲,制作一个计时器,代码如下:

import time as t

class MyTimer():
    #开始计时
    def start(self):
        self.start1 = t.localtime()
        print('Timing starts')

    #结束计时
    def stop(self):
        self.stop1 = t.localtime()
        self.total()
        print('Timing stops')

    #计时计算
    def total(self):
        self.last = []
        self.prompt = 'It\'s '
        for each in range[6]:
            self.last.append(self.stop1[each]-self.start1[each])
            self.prompt += str(self.last[each])

        print(self.prompt)


运行之后,报错:

>>> t = MyTimer()
>>> t.start()
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    t.start()
  File "F:\Programming\Python\practice\44.0.py", line 6, in start
    self.start1 = t.localtime()
AttributeError: 'MyTimer' object has no attribute 'localtime'

求大佬解答!
最佳答案
2020-11-27 15:38:38
对象名和里面的time模块的别名冲突了
t1 = MyTimer()
t1.start()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-27 15:38:38 | 显示全部楼层    本楼为最佳答案   
对象名和里面的time模块的别名冲突了
t1 = MyTimer()
t1.start()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-27 15:48:50 | 显示全部楼层
两个问题
首先变量名污染
你开头引用import time as t
后面 t = MyTimer()
t就失去了他的time属性
另外第十九行for each in range[6] 改为for each in range(6)
附源码
import time as t

class MyTimer():
    #开始计时
    def start(self):
        self.start1 = t.localtime()
        print('Timing starts')

    #结束计时
    def stop(self):
        self.stop1 = t.localtime()
        self.total()
        print('Timing stops')

    #计时计算
    def total(self):
        self.last = []
        self.prompt = 'It\'s '
        for each in range(6):
            self.last.append(self.stop1[each]-self.start1[each])
            self.prompt += str(self.last[each])

        print(self.prompt)
>>> a=MyTimer()
>>> a.start()
Timing starts
>>> a.stop()
It's 000008
Timing stops
>>> t=MyTimer()
>>> t.start()
Traceback (most recent call last):
  File "<pyshell#19>", line 1, in <module>
    t.start()
  File "C:\Users\admin\Desktop\f1.py", line 6, in start
    self.start1 = t.localtime()
AttributeError: 'MyTimer' object has no attribute 'localtime'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 07:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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