ABOUTYOU
根据@alldayremix的评论更新了@ swK的答案:在Python 3中使用:list(my_dict.keys())[0] -> key of "first" element
list(my_dict.values())[0] -> value of "first" element
list(my_dict.items())[0] -> (key, value) tuple of "first" element