题解 | #配置文件恢复# 细心就好,有少敲键盘的技巧

配置文件恢复

http://www.nowcoder.com/practice/ca6ac6ef9538419abf6f883f7d6f6ee5

import sys
_dic={
'reset board':'board fault',
'board add': 'where to add',
'board delete':'no board at all',
'reboot backplane':'impossible',
'backplane abort':'install first',
'he he':'unknown command'
}

for line in sys.stdin:
    ot='unknown command'
    l=line.strip().split(' ')
    if len(l)==1:
        if l[0] in 'reset':
            ot='reset what'
    elif len(l)==2:
        get=0
        for k in _dic.keys():
            kl=k.split(' ')
            if l[0] in kl[0] and l[1] in kl[1]:
                ot=_dic[k]
                get+=1
        if get!=1:
            ot='unknown command'

    else:
        pass

    print(ot)

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
11-27 12:36
已编辑
门头沟学院 前端工程师
Apries:这个阶段来说,很厉害很厉害了,不过写的简历确实不是很行,优势删掉吧,其他的还行
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务