xxxxxxxxxx
first_key = list(my_dict.keys())[0]
print(first_key)
xxxxxxxxxx
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])
xxxxxxxxxx
my_dict = {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'}
first_item = next(iter(my_dict.items()))
print(first_item)