How would you shift left an array by x in Python, and fill the empty values with zeros?
shift left by 1
input: [1, 2, 3, 4] output: [2, 3, 4, 0]
shift l