how to access the frist element in a key value pair from a dictionary in python code example
Example: print first dictionary keys python
first_key = list(my_dict.keys())[0]
print(first_key)
first_key = list(my_dict.keys())[0]
print(first_key)