📌  相关文章
📜  创建一个具有 n 个相同值的数组 python 代码示例

📅  最后修改于: 2022-03-11 14:45:54.730000             🧑  作者: Mango

代码示例1
>> import numpy as np

>> np.full(
    shape=10,
    fill_value=3,
    dtype=np.int)

array([3, 3, 3, 3, 3, 3, 3, 3, 3, 3])