如何实现用户的历史记录功能
使用collections中的deque
from collections import deque dq = deque([], 5) dq.append(1) dq.append(2) dq.append(3) dq.append(4) dq.append(5) print(dq) #deque([1, 2, 3, 4, 5], maxlen=5) dq.append(6) print(dq) #deque([2, 3, 4, 5, 6], maxlen=5)