some_string="ABCDEFGHIJKLMNOPQRSTUVWXYZ" x = 3 res = [some_string[y - x:y] for y in range(x, len(some_string) + x, x)] print(res)