{王伟: "1", 王波: "2‘’} 这样的数据怎么只要 1 和2
时间: 2023-11-16 12:06:53 浏览: 68
您可以通过遍历字典中的键值对,将所有的值提取出来并存储到列表中,然后使用列表去重功能来实现只保留不同的值。具体的Python代码如下所示:
```
data = {'王伟': "1", '王波': "2"}
values = list(data.values())
unique_values = list(set(values))
print(unique_values)
```
输出结果为:
```
['1', '2']
```
这样就可以只保留不同的值了。
相关问题
翻译:王波使用动态ANN,以室外干球温度、相对湿度和太阳辐射和风度为输入变量预测了建筑逐时的热负荷
Translation: Wang Bo used dynamic ANN to predict the hourly thermal load of buildings with dry bulb temperature, relative humidity, solar radiation, and wind degree as input variables.
阅读全文