美文网首页
字符串分割

字符串分割

作者: 笔墨流年乱浮生 | 来源:发表于2018-09-19 00:16 被阅读0次

    python:http://www.nowcoder.com/questionTerminal/d9162298cb5a437aad722fccccaae8a7

    while True:
        try:
            a = input()
            b = input()
            str1 = [a[i:i+8] for i in range(0,len(a),8)]
            str2 = [b[i:i+8] for i in range(0,len(b),8)]
            str3 = str1 + str2
            for i in str3:
                if len(i) < 8:
                    print(i + '0'*(8 - len(i)))
                else:
                    print(i)
        except:
            break
    

    1.把第一行输入以字典的形式(从0开始,到len(a)结束,以8为步长)分片,第二行做相应操作

    2.把两行字典拼接起来

    3.对拼接后的字符串做for循环,长度小于8的在后面补0输出,直接拼接就行,否则(等于8,不会大于8,因为第1步切片过了)按下标输出字典里的值。

    相关文章

      网友评论

          本文标题:字符串分割

          本文链接:https://www.haomeiwen.com/subject/eeqbnftx.html