标签: python dictionary interception
我正在使用Python 3,我有一本字典:
{'investment': [2,62,634,654], 'companies': [2, 30, 62, 53, 66, 279, 281], 'products': [2, 30, 49,128,562,62] . . . }
我不知道字典的大小。 (它根据客户的意见而变化。)
问题是我如何获取字典元素的截取作为输出? 对于样本,最终输出应为[2,62]
[2,62]