Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to get the first key of a dictionary in python

student = {
    'name': 'John',
    'age': 22,
    'gender': 'Male'
}
 
all_keys = list(student)
print('All Keys: ', all_keys)
 
# Get the first key using all_keys[0]
print('First Key: ', all_keys[0])
Source by programmersportal.com #
 
PREVIOUS NEXT
Tagged: #key #dictionary #python
ADD COMMENT
Topic
Name
2+7 =