使用for循环遍历numpy数组时如何获取索引?

时间:2018-12-28 20:32:27

标签: python numpy

我在numpy数组中存储了以下向量:

function get_title() {
    return Promise.all(
        urls.map(url => new Promise(function(resolve, reject) {
            browser.request(url, res => {
                let body = ''
                res.on('data', data => {
                    body += data
                })
                res.on('end', () => {
                    var json = JSON.parse(body).items[0].snippet.title
                    resolve(json)
                })
            }).end()
        }))
    )
}

我正在使用import numpy as np a = np.array([10, 20, 30, 40, 50]) 遍历numpy数组中的每个值。

nditer

我想将索引值放在for x in np.nditer([a]): print("Value in a: {}, Index of Value: {}".format(x, <index-value>)) 。有人可以帮助在Python中高效地解决此问题吗?

0 个答案:

没有答案