python要fail了 发表于 2020-12-26 10:33:51

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

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

suchocolate 发表于 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))

Cool_Breeze 发表于 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')
页: [1]
查看完整版本: 求大神看看 孩子真的不会了。。。