я получаю один и тот же вывод два раза, может кто-нибудь сказать мне, почему? - PullRequest
0 голосов
/ 22 апреля 2020
inp = int(input())

str = []
for i in range(inp):
    data = input().split()

    K , words = int(data[0]) , data[1]

    for j in range(inp):
        if K >= 0:
            str.append(words[K:] + words[:K])

        else:
            str.append(words[K:] + words[:K])

print(' '.join(str))

Вывод:

whomthebelltollsfor whomthebelltollsfor numberverycomplex numberverycomplex

Почему я получаю один и тот же вывод два раза ??

...