python怎么将numpy类转为string类

如题所述

# -*- coding:utf-8 -*-

import numpy as np

mystr = "100110"

print np.array(list(mystr)

print np.array(list(mystr)).tostring()

参考资料

python怎么将numpy类转为string类?.百度知道[引用时间2018-1-13]

温馨提示:答案为网友推荐,仅供参考
第1个回答  2016-05-04

.tostring() 进行转换


示例代码:


# -*- coding:utf-8 -*-
import numpy as np
mystr = "100110"
print np.array(list(mystr))
print np.array(list(mystr)).tostring()

本回答被提问者采纳
第2个回答  2017-08-31
.tostring() 进行转换

示例代码:

1
2
3
4
5

# -*- coding:utf-8 -*-
import numpy as np
mystr = "100110"
print np.array(list(mystr))
print np.array(list(mystr)).tostring()
第3个回答  2017-09-28
Python 3.6.1 (default, Mar 22 2017, 06:17:05) 
[GCC 6.3.0 20170321] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> a = np.arange(10)
>>> str(a)
'[0 1 2 3 4 5 6 7 8 9]'

第4个回答  2017-08-30
你这是要干嘛哈
相似回答