Answers for "get first entry in dictionary python"

3

access first element of dictionary python

res = next(iter(test_dict))
Posted by: Guest on January-12-2021
0

python get first value in a dictionary

# Dictionary of string and int
word_freq = {
    'Hello' : 56,
    "try"    : 23,
    'test'  : 43,
    'This'  : 78,
    'Way'   : 11
}
# Get first value from dictionary
first_value = list(word_freq.values())[0]
print('First Value: ', first_value)

# Output:
# First Value:  56
Posted by: Guest on May-19-2021

Code answers related to "get first entry in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language