用法:
values()
返回字典值的新视图。请参阅视图对象的文档。
一个
dict.values()
视图和另一个视图之间的相等比较将始终返回False
。这也适用于将dict.values()
与自身进行比较时:>>> d = {'a': 1} >>> d.values() == d.values() False
相关用法
- Python dict()用法及代码示例
- Python dictionary update()用法及代码示例
- Python dictionary values()用法及代码示例
- Python dictionary type()用法及代码示例
- Python dictionary fromkeys()用法及代码示例
- Python dict用法及代码示例
- Python dictionary cmp()用法及代码示例
- Python dictionary get()用法及代码示例
- Python dictionary setdefault()用法及代码示例
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.recreate_tasks.ReplayTaskClient.recreate_task_locally用法及代码示例
- Python distributed.diagnostics.plugin.SchedulerPlugin用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.fire_and_forget用法及代码示例
- Python dir用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 dict.values。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。