“Python Получите первые N Элементы DICT” Ответ

Возьмите первый n ряд словаря Python

a_dictionary = {"name" : "John", "age" : 35, "height" : 65}

dict_items = a_dictionary.items()

first_two = list(dict_items)[:2]
print(first_two)

OUTPUT
[('name', 'John'), ('age', 35)]

first_three = list(dict_items)[:3]
print(first_three)

OUTPUT
[('name', 'John'), ('age', 35), ('height', 65)]
dcbert

Доступ к первым элементу словаря Python

res = next(iter(test_dict))
Charan 316

Python Получите первые N Элементы DICT

"""
NOTE: dictionaries do NOT remember the order in which 
key : value pairs have been stored
"""
d = {"a" : 5, "b" : 1, "c" : 8, "d" : 4, "e" : 3, "f" : 10, "g": 2}
# getting the first n key : value pairs
n = 3
first_n = dict(zip(list(d.keys())[:n], list(d.values())[:n]))
first_n
>>> {'a': 5, 'b': 1, 'c': 8}
wolf-like_hunter

Ответы похожие на “Python Получите первые N Элементы DICT”

Вопросы похожие на “Python Получите первые N Элементы DICT”

Больше похожих ответов на “Python Получите первые N Элементы DICT” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования