TOTAL PSS: 24492 TOTAL RSS: 87324 TOTAL SWAP PSS: 4063 转换成字典
时间: 2024-02-10 07:12:19 浏览: 114
使用喷墨方法生产的PEDOT:PSS透明导电膜的处理方法的检验
可以将这些数据转换为一个Python字典,格式如下:
```
{
"TOTAL PSS": 24492,
"TOTAL RSS": 87324,
"TOTAL SWAP PSS": 4063
}
```
您可以使用以下代码将其转换:
```python
data = "TOTAL PSS: 24492 TOTAL RSS: 87324 TOTAL SWAP PSS: 4063"
stats = {}
for stat in data.split():
key, value = stat.split(":")
stats[key] = int(value)
print(stats)
```
阅读全文