如何将一个列表变为这种形式[[-5.0639e-04], [1.9374e-01], [-3.9240e-01], [2.9647]]
时间: 2023-02-17 17:03:58 浏览: 103
ubuntu-22.04.5-desktop-amd64.iso.torrent
可以使用Python中的列表推导式来将列表中的每个元素都放入一个新的列表中,例如:
```
original_list = [-5.0639e-04, 1.9374e-01, -3.9240e-01, 2.9647]
new_list = [[x] for x in original_list]
```
这样new_list就会变成[[-5.0639e-04], [1.9374e-01], [-3.9240e-01], [2.9647]]
阅读全文