ps* to the number of places to rotate to the left (or to the right if negative). Defaults to 1. >>> list(circular_shifts(range(4), 2)) [(0, 1, 2, 3), (2, 3, 0, 1)] >>> list(circular_shifts(range(4), -1)) [(0, 1, 2, 3), (3, 0, 1, 2), (2, 3, 0, 1), (1, 2, 3, 0)] r