gpt4 book ai didi

python - 将整数字符串列表转换为整数数组的最有效方法

转载 作者:太空宇宙 更新时间:2023-11-03 13:06:49 25 4
gpt4 key购买 nike

我有一个简单的问题 - 我需要将一个整数字符串转换为一个整数列表并将其插入到一个 numpy 数组中。

我有有效的代码,但我对更有效的方法感兴趣(如果有的话)。起始条件是我有一个整数字符串列表(第 4 行),目标是获得一个用这些整数填充的 numpy 数组。

这是我使用的代码示例:

import numpy as np
print("Hello StackOverflow")

listOfStringOfINTs = ["123231231231231"]*5
print(listOfStringOfINTs)
numpyVectorOfInts = np.empty([len(listOfStringOfINTs),len(listOfStringOfINTs[0]) ], dtype='int')
for i, IntString in enumerate(listOfStringOfINTs):
numpyVectorOfInts[i] = list(map(int, IntString))

print(numpyVectorOfInts)

最佳答案

我不确定这在速度上是否更好,但它更简单:

In [68]: np.array([list(astr) for astr in listOfStringOfINTs],int)           
Out[68]:
array([[1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1],
[1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1],
[1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1],
[1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1],
[1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1]])

list(astr) 将字符串拆分为 1 个字符串的列表。具有 int dtype 的 np.array 负责转换所有字符串。

或者您可以将所有字符串连接成字符串,创建列表,然后 reshape 数组:

np.array(list(''.join(listOfStringOfINTs)),int).reshape(5,-1)

关于python - 将整数字符串列表转换为整数数组的最有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56172630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com