I have a list of values, want to extract the first 3 values every time, and need to remove 1st index position value after iteration.
a = [11,12,13,14,15,16,17,18,19]
Output:
[[11,12,13],[12,13,14],[13,14,15],[14,15,16],[15,16,17],[16,17,18],[17,18,19]]