Cokes Blog
str1 ='abcdefg123456789' length = 5 [str1[i:i+length] for i in range(0, len(str1), length)] # 리스트로 봔환됨 # ['abcde', 'fg123', '45678', '9']