Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python rotate list

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
 
PREVIOUS NEXT
Tagged: #python #rotate #list
ADD COMMENT
Topic
Name
6+4 =