题解 | #字符串分隔#

字符串分隔

https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7

def first(str1):
    if len(str1)%8==0:
        str2=str1
    else:
        str2=str1+'0'*(8-len(str1)%8)
    return str2
def second(str1):
    for i in range(0,len(str1),8):
        str4=str1[i:i+8]
        print(str4)
    return str4
while True:
    try:
        str5=str(input())
        str6=first(str5)
        second(str6)
    except:
        break

首先定义两个函数,分别对字符串进行加0处理和隔断处理,最后再调用。

全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务