1. Write a Python function which takes a list as the argument: The function moves all items in the list one position to the left; with the leftmost item moved to the rightmost position:
Example Input: Ll= [1,2,3,4] Example Output after calling the function: [2,3,4, 1]