文本转字典 python
时间: 2024-08-12 12:04:37 浏览: 96
Python json转字典字符方法实例解析
在Python中,将文本转换成字典通常涉及到解析某种结构化格式的字符串,比如JSON、CSV或XML等。这里以JSON为例,因为它是常见的键值对数据格式:
```python
import json
def text_to_dict(text):
# 假设文本是一个有效的JSON字符串
dict_data = json.loads(text)
return dict_data
# 示例
text = '{"name": "John", "age": 30, "city": "New York"}'
result = text_to_dict(text)
print(result) # 输出:{'name': 'John', 'age': 30, 'city': 'New York'}
阅读全文