gpt4 book ai didi

Python numpy 字符串乘法

转载 作者:行者123 更新时间:2023-11-30 22:01:09 25 4
gpt4 key购买 nike

我有一个 numpy 数组:

a= [1,2,3,4,5,6]

我需要对此数组进行某种字符串乘法,如下所示:

2*string(a) = [1,1,2,2,3,3,4,4,5,5,6,6]

有没有办法在 numpy 中做到这一点?

谢谢

最佳答案

您可以使用np.repeat :

import numpy as np

a= [1,2,3,4,5,6]
result = np.repeat(a, 2)

print(result)

输出

[1 1 2 2 3 3 4 4 5 5 6 6]

关于Python numpy 字符串乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54134581/

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