简介:
旋转 Python 列表涉及将其元素向左或向右移动指定数量的位置.
方法一:
问题:如何将列表向左旋转?
答案:
<code class="python">def rotate_left(l, n): return l[n:] + l[:n]</code>
示例:
<code class="python">example_list = [1, 2, 3, 4, 5] result = rotate_left(example_list, 2) print(result) # Output: [3, 4, 5, 1, 2]</code>
方法 2:
问题:如何将列表旋转到对吗?
答案:
<code class="python">def rotate_right(l, n): return l[-n:] + l[:-n]</code>
示例:
<code class="python">example_list = [1, 2, 3, 4, 5] result = rotate_right(example_list, 2) print(result) # Output: [4, 5, 1, 2, 3]</code>
解释:
两种方法都使用切片来创建新列表:
然后通过连接这些切片形成结果移位列表。
以上是如何向左或向右旋转 Python 列表?的详细内容。更多信息请关注PHP中文网其他相关文章!