|
楼主 |
发表于 2020-11-20 22:08:35
|
显示全部楼层
这几天一直在坚持学习,只不过一直跟着敲代码,花时间自己找错,乐趣还是有一点的,就是学完懒得再来发帖,因为开始用Typora做笔记了,今天是因为遇到了搞不定问题,所以来论坛求助,我这里也贴一下吧。同志们,加油!!!
旧视频第45讲,P45 魔法方法:简单定制。
我的python版本为3.9.0
代码如下:
import time as t
class Mytimer():
# 开始计时
def start(self):
self.strat = t.localtime()
print("计时开始...")
# 停止计时
def stop(self):
self.stop = t.localtime()
self._calc()
print("计时结束!")
# 内部方法,计算运行时间
def _calc(self):
self.lasted = []
self.prompt = "总共运行了"
for index in range(6):
self.lasted.append(self.stop[index] - self.start[index])
self.prompt += str(self.lasted[index])
print(self.prompt)
t1 = Mytimer()
t1.start()
计时开始...
t1.stop() #输入后报错。
Traceback (most recent call last):
File "<pyshell#150>", line 1, in <module>
t1.stop()
File "C:/Users/elwin/Documents/time.py", line 12, in stop
self._calc()
File "C:/Users/elwin/Documents/time.py", line 20, in _calc
self.lasted.append(self.stop[index] - self.start[index])
TypeError: 'method' object is not subscriptable
我自己研究了半天,认为这个结果提示的意思是:self.stop[index]以及self.start[index]这两个对象不支持“-”的操作。所以_cacl函数也不成立。
问题1:这段代码我是造成视频抄的,原理我懂了,但是为啥小甲鱼可以执行,我不行?版本的问题吗?
问题2:t1.start后得到一个时间参数t.localtime,这个参数为一组数据,通过什么命令可以它变成tuple,这样就可以计算了,是不是?
问题3:我自己单独导入time模块测试的时候,t = time.localtime 然后执行t(),得到结果为:time.struct_time(tm_year=2020, tm_mon=11, tm_mday=20, tm_hour=21, tm_min=44, tm_sec=33, tm_wday=4, tm_yday=325, tm_isdst=0),这也不是单纯的tuple呀,如何可以直接一个命令转化呢?
|
|