python怎么根据title获取ID的值
时间: 2024-05-08 07:22:15 浏览: 127
Python从MP3文件获取id3的方法
假设你要从一个字典中获取 `title` 为某个值的字典项的 `ID` 值,可以使用以下代码:
```python
my_dict = [
{"ID": 1, "title": "Python Basics"},
{"ID": 2, "title": "Python Advanced"},
{"ID": 3, "title": "Python for Machine Learning"},
]
title_to_find = "Python Advanced"
for item in my_dict:
if item["title"] == title_to_find:
print(item["ID"])
```
这里使用了一个 `for` 循环来遍历字典中的每个字典项,然后检查 `title` 是否与要查找的值匹配。如果匹配,就打印出该字典项的 `ID` 值。
阅读全文