题解 | #字符串分隔#
字符串分隔
https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
import sys
str1=input()
if len(str1)!=0:
while(len(str1)>0):#限制输入字符串非空
print(str1[:8].ljust(8,"0"))#ljust()使字符串左对齐,右侧填充0
str1=str1[8:]
else:
print("input error")