题解 | #字符串分隔#

字符串分隔

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

这道题还是比较有趣的,它充分考查字符串的利用与循环机制。

import sys

input_str = input()

while len(input_str):
    if len(input_str)>=8:
        print(input_str[:8])
        input_str = input_str[8:]
    else:
        print(input_str+'0'*(8-len(input_str)))
        input_str = []
全部评论

相关推荐

HNU_fsq:建议直接出国,这简历太6了。自愧不如
点赞 评论 收藏
分享
球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
16 收藏 评论
分享
牛客网
牛客企业服务