str如何转tuple和array数组?
要将字符串(str)转换为元组(tuple),可以使用内置函数tuple()。这将返回一个包含字符串中每个字符的元组。
示例代码如下:
s = "hello"
t = tuple(s)
print(t) # ('h', 'e', 'l', 'l', 'o')
要将字符串(str)转换为数组(array),可以使用第三方库numpy的函数numpy.array()。首先需要安装numpy库,然后导入该库并使用array()函数将字符串转换为数组。
示例代码如下:
import numpy as np
s = "hello"
arr = np.array(list(s))
print(arr) # ['h' 'e' 'l' 'l' 'o']
请注意,使用numpy库需要先安装该库。可以使用以下命令安装numpy库:
pip install numpy
原文地址: http://www.cveoy.top/t/topic/hXCY 著作权归作者所有。请勿转载和采集!