题解 | #字符串分隔#
字符串分隔
https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
temp = input() #获取字符串 while(len(temp)>0): #只要不为空就继续 print(temp[:8].ljust(8,"0")) #切割八个字符串的长度,用ljust字符串填充0直到八位 temp = temp[8:] #更新temp
字符串分隔
https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
temp = input() #获取字符串 while(len(temp)>0): #只要不为空就继续 print(temp[:8].ljust(8,"0")) #切割八个字符串的长度,用ljust字符串填充0直到八位 temp = temp[8:] #更新temp
相关推荐