最佳答案
有没有什么简单的方法可以通过知道字典中的值来找到一个键?
我能想到的就是:
key = [key for key, value in dict_obj.items() if value == 'value'][0]