Cokes Blog
https://www.acmicpc.net/problem/1075 N = int(input()) # int형으로 입력받습니다. F = int(input()) # int형으로 입력받습니다.if N >= 100 and N
str1 ='abcdefg123456789' length = 5 [str1[i:i+length] for i in range(0, len(str1), length)] # 리스트로 봔환됨 # ['abcde', 'fg123', '45678', '9']