Python 中的移動清單:左右旋轉
問題:
問題:你怎麼能將Python 清單向右或向左旋轉指定數量的位置?
答案:<code class="python">def rotate(l, n): return l[-n:] + l[:-n]</code>
以下函數完成此任務:
解釋:
解釋:<code class="python">def rotate(l, n): return l[n:] + l[:n]</code>
解釋:
<code class="python">rotate([1, 2, 3, 4, 5], 2) # [3, 4, 5, 1, 2]</code>
解釋:
以上是如何將 Python 清單向右或向左旋轉指定位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!