华为机考入门python3--(4)牛客4-字符串分隔

分类:字符串

知识点:

  1. 复制符号*    复制3个'0'    '0'*3 = '000'

  2. 字符串截取    截取第i位到j-1位    str[i:j]

题目来自【牛客】

华为机考入门python3--(4)牛客4-字符串分隔_第1张图片


input_str = input().strip()

# 先补齐
if len(input_str) % 8 != 0:  
    input_str += '0' * (8 - len(input_str) % 8)  

# 每8个分
output = []
for i in range(0, len(input_str), 8):  
    output.append(input_str[i:i+8])

for sentence in output:
    print(sentence)

by 软件工程小施同学

 

你可能感兴趣的:(华为机试机考,华为,python,算法)