缩进问题
_calc是一个下划线,你也打错了
import time as t
class MyTimer():
# 开始计时
def start (self):
self.start = 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 - self.start)
self.prompt += str(self.lasted)
print(self.prompt)
逃兵 发表于 2021-1-23 16:04
缩进问题
_calc是一个下划线,你也打错了
谢谢大佬
临时.png
页:
[1]