鱼C论坛

 找回密码
 立即注册
查看: 1396|回复: 3

[已解决]求大神帮忙!!!

[复制链接]
发表于 2017-7-25 17:55:55 | 显示全部楼层 |阅读模式

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

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

x
import time as t

class Mytimer():
    def __init__(self):
        self.unit = ['年','月','天','小时','分钟','秒']
        self.prompt = "未开始计时"
        self.lasted = []
        self.begin = 0
        self.end = 0
   
    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 = t.localtime()
        self.prompt = "提示:请先调用stop()停止计时!"
        
        print("计时开始")

    #停止计时
    def stop(self):
        if not self.begin:
            print("提示:请先调用start()进行计时")
        else:
            self.end = t.localtime()
            self._calc()
            print("计时结束!")

    #内部方法,计算运行时间
    def _calc(self):
        self.lasted = []
        self.prompt = "总共运行了"
        for index in range(6):
            self.lasted.append(self.end[index] - self.begin[index])
            if self.lasted[index]:
            self.prompt += (str(self.lasted[index]) + self.unit[index])

        self.begin = 0
        self.end = 0
        

这是按照小甲鱼python零基础课程的45课打的。。。
但是总是显示缩进不正确,卡了一个小时了。。。
求大神帮忙
最佳答案
2017-7-25 18:17:14
本帖最后由 shuofxz 于 2017-7-25 18:18 编辑

看编译器哪里提示错了就改哪里呗。。
27行 48行的代码都少缩进
下面是我改过的,没细看代码逻辑是否有问题,现在可以正常编译通过
  1. import time as t

  2. class Mytimer():
  3.     def __init__(self):
  4.         self.unit = ['年','月','天','小时','分钟','秒']
  5.         self.prompt = "未开始计时"
  6.         self.lasted = []
  7.         self.begin = 0
  8.         self.end = 0
  9.    
  10.     def __str__(self):
  11.         return self.prompt

  12.     __repr__ = __str__

  13.     def __add__(self,other):
  14.         prompt = "总共运行了"
  15.         result = []
  16.         for index in range(6):
  17.             result.append(self.lasted[index] + other.lasted[index])
  18.             if result[index]:
  19.                 prompt += (str(result[index]) + self.unit[index])
  20.         return prompt
  21.         
  22.     #开始计时
  23.     def start(self):
  24.         self.begin = t.localtime()
  25.         self.prompt = "提示:请先调用stop()停止计时!"
  26.         
  27.         print("计时开始")

  28.     #停止计时
  29.     def stop(self):
  30.         if not self.begin:
  31.             print("提示:请先调用start()进行计时")
  32.         else:
  33.             self.end = t.localtime()
  34.             self._calc()
  35.             print("计时结束!")

  36.     #内部方法,计算运行时间
  37.     def _calc(self):
  38.         self.lasted = []
  39.         self.prompt = "总共运行了"
  40.         for index in range(6):
  41.             self.lasted.append(self.end[index] - self.begin[index])
  42.             if self.lasted[index]:
  43.                 self.prompt += (str(self.lasted[index]) + self.unit[index])

  44.         self.begin = 0
  45.         self.end = 0
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-7-25 18:17:14 | 显示全部楼层    本楼为最佳答案   
本帖最后由 shuofxz 于 2017-7-25 18:18 编辑

看编译器哪里提示错了就改哪里呗。。
27行 48行的代码都少缩进
下面是我改过的,没细看代码逻辑是否有问题,现在可以正常编译通过
  1. import time as t

  2. class Mytimer():
  3.     def __init__(self):
  4.         self.unit = ['年','月','天','小时','分钟','秒']
  5.         self.prompt = "未开始计时"
  6.         self.lasted = []
  7.         self.begin = 0
  8.         self.end = 0
  9.    
  10.     def __str__(self):
  11.         return self.prompt

  12.     __repr__ = __str__

  13.     def __add__(self,other):
  14.         prompt = "总共运行了"
  15.         result = []
  16.         for index in range(6):
  17.             result.append(self.lasted[index] + other.lasted[index])
  18.             if result[index]:
  19.                 prompt += (str(result[index]) + self.unit[index])
  20.         return prompt
  21.         
  22.     #开始计时
  23.     def start(self):
  24.         self.begin = t.localtime()
  25.         self.prompt = "提示:请先调用stop()停止计时!"
  26.         
  27.         print("计时开始")

  28.     #停止计时
  29.     def stop(self):
  30.         if not self.begin:
  31.             print("提示:请先调用start()进行计时")
  32.         else:
  33.             self.end = t.localtime()
  34.             self._calc()
  35.             print("计时结束!")

  36.     #内部方法,计算运行时间
  37.     def _calc(self):
  38.         self.lasted = []
  39.         self.prompt = "总共运行了"
  40.         for index in range(6):
  41.             self.lasted.append(self.end[index] - self.begin[index])
  42.             if self.lasted[index]:
  43.                 self.prompt += (str(self.lasted[index]) + self.unit[index])

  44.         self.begin = 0
  45.         self.end = 0
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-7-25 18:21:53 | 显示全部楼层
  1. import time as t

  2. class Mytimer():
  3.     def __init__(self):
  4.         self.unit = ['年','月','天','小时','分钟','秒']
  5.         self.prompt = "未开始计时"
  6.         self.lasted = []
  7.         self.begin = 0
  8.         self.end = 0
  9.    
  10.     def __str__(self):
  11.         return self.prompt

  12.     __repr__ = __str__

  13.     def __add__(self,other):
  14.         prompt = "总共运行了"
  15.         result = []
  16.         for index in range(6):
  17.             result.append(self.lasted[index] + other.lasted[index])
  18.             if result[index]:
  19.                 prompt += (str(result[index]) + self.unit[index])
  20.         return prompt
  21.         
  22.     #开始计时
  23.     def start(self):
  24.         
  25.         self.begin = t.localtime()
  26.         self.prompt = "提示:请先调用stop()停止计时!"
  27.         
  28.         print("计时开始")

  29.     #停止计时
  30.     def stop(self):
  31.         if not self.begin:
  32.             print("提示:请先调用start()进行计时")
  33.         else:
  34.             self.end = t.localtime()
  35.             self._calc()
  36.             print("计时结束!")

  37.     #内部方法,计算运行时间
  38.     def _calc(self):
  39.         self.lasted = []
  40.         self.prompt = "总共运行了"
  41.         for index in range(6):
  42.             self.lasted.append(self.end[index] - self.begin[index])
  43.             if self.lasted[index]:
  44.                
  45.                 self.prompt += (str(self.lasted[index]) + self.unit[index])

  46.         self.begin = 0
  47.         self.end = 0
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-7-25 18:22:32 | 显示全部楼层
我用起来能运行啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-5-18 15:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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