python字典转数组
时间: 2023-09-24 19:13:38 浏览: 100
python 实现列表转字典
5星 · 资源好评率100%
可以使用Python中的`list()`函数将字典转换为数组。例如:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
my_array = list(my_dict.values())
print(my_array)
```
输出:
```
['John', 25, 'New York']
```
注意,这将仅包含字典的值。如果你想要将字典的键和值都包含在数组中,可以使用`items()`方法:
```python
my_dict = {'name': 'John', 'age': 25, 'city': 'New York'}
my_array = list(my_dict.items())
print(my_array)
```
输出:
```
[('name', 'John'), ('age', 25), ('city', 'New York')]
```
阅读全文