简体   繁体   中英

How to convert a Numpy array of int to string in Python?

How can I convert the Numpy array into a string?

data = rawTrainingData[0:25010,0:10]
labels = rawTrainingData[0:25010,10]

stringData = np.array(map(str,data))

print data[1]
print stringData[1]

尝试使用data.astype('U')或使用python2 data.astype('S')– Paul Panzer

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM