在 Python 中将大小为 n 的字符串向左旋转 n 次的程序

假设我们有一个大小为 n 的字符串 s。我们必须通过将它们旋转 1 个位置、2 个位置 ... n 个位置来找到所有旋转的字符串。

因此,如果输入类似于 s = "hello",那么输出将是 ['elloh', 'llohe', 'lohel', 'ohell', 'hello']

示例

让我们看看以下实现以获得更好的理解 -

def solve(s):

   res = []

   n = len(s)

   for i in range(0, n):

      s = s[1:n]+s[0]

      res.append(s)

   return res

s = "hello"

print(solve(s))

输入

hello
输出结果
['elloh', 'llohe', 'lohel', 'ohell', 'hello']

以上是 在 Python 中将大小为 n 的字符串向左旋转 n 次的程序 的全部内容, 来源链接: utcz.com/z/343687.html

回到顶部