鱼C论坛

 找回密码
 立即注册
查看: 1308|回复: 6

[已解决]44讲第0题简单定制

[复制链接]
发表于 2020-6-29 17:52:13 From FishC Mobile | 显示全部楼层 |阅读模式

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

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

x
import time

#def一个函数当计算出的时间列表里面有负数时自动调整为需要的没有负数的数据
def adjust(mylist,index):
    date=[0,12,30,24,60,60]
    if mylist[index]:
        mylist[index]-=1
        mylist[index+1]+=date[index]
    else:
        index-=1
        adjust(mylist,index)
 
class Timer:
    def start(self):
        self.begin=time.localtime
        print('计时开始')
    def stop(self):
        self.end=time.localtime
        self.__calc()
        
        
    def __calc(self):
        unit=['年','月','日','时','分','秒']
        
        self.lasted=''
        self.mylist=[]
        
        for index in range(6):
            self.mylist.append(self.end[index]-self.begin[index])
        for index in range(6):          
            if self.mylist[index]<0:
                index-=1
                adjust(mylist,index)
        for index in range(6):
            if self.mylist[index]:
                self.lasted+=str(self.mylist[index])+unit[index]
        print('计时结束'+'\n'+'共运行%s'%self.lasted)
 
t=Timer()
t.start()
t.stop()
self.mylist.append(self.end[index]-self.begin[index])系统报告这行类型错误,函数不可加下标,
大佬们帮我改下程序,让他能跑起来
最佳答案
2020-6-29 18:22:25


import time


# def一个函数当计算出的时间列表里面有负数时自动调整为需要的没有负数的数据
def adjust(mylist, index):
    date = [0, 12, 30, 24, 60, 60]
    if mylist[index]:
        mylist[index] -= 1
        mylist[index + 1] += date[index]
    else:
        index -= 1
        adjust(mylist, index)


class Timer:
    def start(self):
        self.begin = time.localtime()
        print('计时开始')

    def stop(self):
        self.end = time.localtime()
        self.__calc()

    def __calc(self):
        unit = ['年', '月', '日', '时', '分', '秒']

        self.lasted = ''
        self.mylist = []

        for index in range(6):
            self.mylist.append(self.end[index] - self.begin[index])
        for index in range(6):
            if self.mylist[index] < 0:
                index -= 1
                adjust(self.mylist, index)
        for index in range(6):
            if self.mylist[index]:
                self.lasted += str(self.mylist[index]) + unit[index]
        print('计时结束' + '\n' + '共运行%s' % self.lasted)


t = Timer()
t.start()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-29 18:02:16 | 显示全部楼层
你的self.begin和self.end是俩函数啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-29 18:22:25 | 显示全部楼层    本楼为最佳答案   


import time


# def一个函数当计算出的时间列表里面有负数时自动调整为需要的没有负数的数据
def adjust(mylist, index):
    date = [0, 12, 30, 24, 60, 60]
    if mylist[index]:
        mylist[index] -= 1
        mylist[index + 1] += date[index]
    else:
        index -= 1
        adjust(mylist, index)


class Timer:
    def start(self):
        self.begin = time.localtime()
        print('计时开始')

    def stop(self):
        self.end = time.localtime()
        self.__calc()

    def __calc(self):
        unit = ['年', '月', '日', '时', '分', '秒']

        self.lasted = ''
        self.mylist = []

        for index in range(6):
            self.mylist.append(self.end[index] - self.begin[index])
        for index in range(6):
            if self.mylist[index] < 0:
                index -= 1
                adjust(self.mylist, index)
        for index in range(6):
            if self.mylist[index]:
                self.lasted += str(self.mylist[index]) + unit[index]
        print('计时结束' + '\n' + '共运行%s' % self.lasted)


t = Timer()
t.start()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-29 18:25:19 | 显示全部楼层
self.begin=time.localtime

这边忘记加上括号了
self.end=time.localtime

同上
for index in range(6):         
            if self.mylist[index]<0:
                index-=1
                adjust(mylist,index)


这个地方忘记加 self 了



我上面的代码没帮你停止  不然你看不到运行时间哈  你还是运行之后 然后输入 t.stop() 在停止吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-29 19:29:43 From FishC Mobile | 显示全部楼层
Twilight6 发表于 2020-6-29 18:25
这边忘记加上括号了

同上

嗯,但是手机端不允许运行后再输入,所以我只能这样试试了,发出来主要是那个报错,我看着那一行应该没有错,前面加了两括号后正常跑起来了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-29 20:01:04 | 显示全部楼层
tiger吴 发表于 2020-6-29 19:29
嗯,但是手机端不允许运行后再输入,所以我只能这样试试了,发出来主要是那个报错,我看着那一行应该没有 ...



嗯嗯    我代码帮您改好了  也测试过了  你复制去就可以了~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-29 22:39:46 From FishC Mobile | 显示全部楼层
Twilight6 发表于 2020-6-29 20:01
嗯嗯    我代码帮您改好了  也测试过了  你复制去就可以了~~

最后面加上t.stop()
应该也会有运行的时间数啊,为什么是空的呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-20 07:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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