希望你在享受:) 我需要一些帮助
我的网站工作正常但在子菜单页面上汉堡包菜单根本没有显示。它在所有其他页面上显示完全正常,但在每个子菜单页面上都消失了..
http://packsmartinc.com/market-segment/specialty-print-finishing-solutions/ (这是我的子菜单页面之一)
请查看我的案例&让我知道。
谢谢, 奥马尔
答案 0 :(得分:0)
>>> d = {1: [2, 3, 4, 5, 6,]}
>>> new = {1: 7, 2: 4} # only one current online time anyway (no need for list here)
>>> for _id, new_online in new.items():
... d[_id] = (d.get(_id, []) + [new_online])[-5:] # only take the last 5 elements
...
>>> d
{1: [3, 4, 5, 6, 7], 2: [4]}
>>>