“Python mengekstrak kunci spesifik dari kamus” Kode Jawaban

Python mengekstrak kunci spesifik dari kamus

# Basic syntax:
{key: your_dict[key] for key in your_dict.keys() and {'key_1', 'key_2'}}
# Where this uses list comprehension for dictionaries to make a new dictionary
#	with the keys that are found in the set

# Example usage:
your_dict = {'key_1': 1, 'key_2': 2, 'key_3': 3}
{key: your_dict[key] for key in your_dict.keys() and {'key_1', 'key_2'}}
--> {'key_1': 1, 'key_2': 2}
Charles-Alexandre Roy

Ekstrak nilai kunci spesifik dari kamus python

test_data = [{'id':1, 'value':'one'}, {'id':2, 'value':'two'}, {'id':3, 'value':'three'}]

generator = ( item['value'] for item in test_data )

...

for i in generator:
    do_something(i)
SuperUnknown Python

Jawaban yang mirip dengan “Python mengekstrak kunci spesifik dari kamus”

Pertanyaan yang mirip dengan “Python mengekstrak kunci spesifik dari kamus”

Lebih banyak jawaban terkait untuk “Python mengekstrak kunci spesifik dari kamus” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya