python怎么将numpy类转为string类
答案:5 悬赏:50 手机版
解决时间 2021-01-16 14:14
- 提问者网友:書生途
- 2021-01-16 00:14
python怎么将numpy类转为string类
最佳答案
- 五星知识达人网友:鱼忧
- 2021-01-16 01:47
# -*- 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]
import numpy as np
mystr = "100110"
print np.array(list(mystr)
print np.array(list(mystr)).tostring()
参考资料
python怎么将numpy类转为string类?.百度知道[引用时间2018-1-13]
全部回答
- 1楼网友:冷風如刀
- 2021-01-16 06:38
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]'
[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]'
- 2楼网友:第幾種人
- 2021-01-16 05:05
你这是要干嘛哈
- 3楼网友:duile
- 2021-01-16 04:01
.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()
示例代码:
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()
- 4楼网友:刀戟声无边
- 2021-01-16 03:16
.tostring() 进行转换
示例代码:
# -*- coding:utf-8 -*-
import numpy as np
mystr = "100110"
print np.array(list(mystr))
print np.array(list(mystr)).tostring()
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯