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])