如何在Python中的字典中过滤非字符串键? [英] How do I filter out non-string keys in a dictionary in Python?

查看:214
本文介绍了如何在Python中的字典中过滤非字符串键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很习惯Python,并试图找出如何过滤出字典中的所有非字符串键。我感谢您提供的任何帮助。

解决方案

  {key:dict [key] for键入dict.keys()if isinstance(key,int)} 


I'm new to Python and trying to figure out how to filter out all the non-string keys in a dictionary. I appreciate any help you can provide.

解决方案

 { key: dict[key] for key in dict.keys() if isinstance(key, int) }

这篇关于如何在Python中的字典中过滤非字符串键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆