📜  如何在python代码示例中旋转列表

📅  最后修改于: 2022-03-11 14:46:53.036000             🧑  作者: Mango

代码示例2
def rotate_list_left(_list : list, rotation_value: int):

    result_list = _list.copy()

    for k in range(0, len(_list)):
        result_list[k-rotation_value] = _list[k]

    return result_list