numpy数组使用表达式

时间:2019-01-29 10:25:16

标签: python numpy

当x数组已定义时,如何使用表达式y1 = x创建np数组

x = [1,2,5,7]

从这个数组x,我想使用表达式

创建另一个数组y1。
y1 = x

使用numpy

1 个答案:

答案 0 :(得分:1)

如果要复制数组,将是

OrderedList = function (element)
  for i, item in ipairs(element.content) do
    local first = item[1]
    if first and first.t == 'Para' then
      element.content[i][1] = pandoc.Para{pandoc.Strong(first.content)}
    end
  end
  return element
end

当前,您只需将列表从x分配到y1。这样,您可以使用x中的值创建一个新的numpy数组。