price_history = [1,2,3,4,5] print(price_history) price_history.pop(0) #pop first item print(price_history)