鱼C论坛

 找回密码
 立即注册
查看: 1849|回复: 2

求大神看看 孩子真的不会了。。。

[复制链接]
发表于 2020-12-26 10:33:51 | 显示全部楼层 |阅读模式

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

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

x
timetransform问题
1.十二小时制转换成二十四小时制
我写的代码:
def standard_to_military_time(s):
    hour,minute,M = input("standard_to_military_time:").split(":", )
    hour = int(hour)
    minute = int(minute)
    M = str(M)
    if AM in M:
        print(0 + "%d:%d"%(hour,minute))
    else:
        if PM in M:
            hour += 12
            print("%d:%d"%(hour,minute))
        else:
            raise NotImplementedError(输入错误)

这个的运行本身是没有问题的
但是后面检验代码:
assert standard_to_military_time('2:45 PM') == '14:45'
assert standard_to_military_time('9:05 AM') == '09:05'
就老是出错 是我哪里写错了吗55555
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-26 11:01:42 | 显示全部楼层
本帖最后由 suchocolate 于 2020-12-26 11:40 编辑

1)'2:45 PM'以: 分割之后只有2个元素,赋值给3个变量会报错的。
2)AM和PM都没有定义是什么,也会报错的。
3)把代码贴全吧。
def test(s):
    hour, apm = s.split(":")
    hour = int(hour)
    if 'PM' in apm:
        hour += 12
    print(f'{hour}:{apm}')


if __name__ == '__main__':
    test('2:45 PM')


省事直接用time模块:
import time
t1 = time.strptime('2:45 PM', '%I:%M %p')
print(time.strftime('%H:%M', t1))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-12-26 11:31:31 | 显示全部楼层
本帖最后由 Cool_Breeze 于 2020-12-26 11:36 编辑
#!/usr/bin/env python3
#coding=utf-8
def standard_to_military_time(s):
    hour,M = s.split(":")
    hour = int(hour)
    if 'AM' in M:
        print("0%d:%s"%(hour, M))
    elif 'PM' in M:
        hour += 12
        print("%d:%s"%(hour, M))
    else:
        raise NotImplementedError(输入错误)

standard_to_military_time('2:45 PM')
standard_to_military_time('9:05 AM')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 01:10

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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