“Zrozumienie słownika Pythona” Kod odpowiedzi

Zestaw Pythona i słownik zrozumienia

simple_dict = {
    'a': 1,
    'b': 2
}
my_dict = {key: value**2 for key,value in simple_dict.items()}
print(my_dict)
#result = {'a': 1, 'b': 4}
Blue-eyed Bat

Dict rozumie Python

# dict comprehension we use same logic, with a difference of key:value pair
# {key:value for i in list}

fruits = ["apple", "banana", "cherry"]
print({f: len(f) for f in fruits})

#output
{'apple': 5, 'banana': 6, 'cherry': 6}
Handsome Hamster

Python Dict rozumie

>>> {x: x**2 for x in (2, 4, 6)}
{2: 4, 4: 16, 6: 36}
Splendid Serval

Słownik rozumie Python

print({i:j for i,j in zip(txt_list,num) if i!="All"})
Grieving Goshawk

Dict rozumienie

# Dictionary comprehension

{i:i*2 for i in range(10)}
alberduris

Zrozumienie słownika Pythona

# Dictionary Comprehension
squares = {x: x*x for x in range(6)}

print(squares)
SAMER SAEID

Odpowiedzi podobne do “Zrozumienie słownika Pythona”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu