胡涛成 发表于 2021-1-23 16:00:23

本主题需向作者支付 5 鱼币 才能浏览 购买主题

逃兵 发表于 2021-1-23 16:04:41

本帖最后由 逃兵 于 2021-1-23 16:08 编辑

缩进问题

_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 17:00:22

逃兵 发表于 2021-1-23 16:04
缩进问题

_calc是一个下划线,你也打错了

谢谢大佬

immotral 发表于 2021-1-23 17:06:33

临时.png
页: [1]
查看完整版本: python入门 ——魔法方法