在 Python 中可以使用以下几种方式创建字符串数组:
一、使用列表(list)
列表可以存储多个字符串,类似于其他语言中的数组。
# 创建一个包含多个字符串的列表
string_array = ['apple', 'banana', 'cherry']
print(string_array)
二、使用元组(tuple)
元组与列表类似,但元组是不可变的。
string_tuple = ('orange', 'grape', 'kiwi')
print(string_tuple)
三、使用 numpy 数组
如果安装了 numpy 库,可以使用 numpy 数组来存储字符串。需要注意的是,numpy 数组要求所有元素的数据类型一致,所以在存储字符串时可能需要指定合适的数据类型。
import numpy as np
string_np_array = np.array(['mango', 'pear', 'peach'], dtype='<U6')
print(string_np_array)
其中 dtype='<U6'
表示小端字节序(<
)的 Unicode 字符串,最大长度为 6。你可以根据实际情况调整数据类型。
以下是分别输出不同类型字符串数组中第一项的方法:
一、对于列表
string_array = ['apple', 'banana', 'cherry']
print(string_array[0])
二、对于元组
string_tuple = ('orange', 'grape', 'kiwi')
print(string_tuple[0])
三、对于 numpy 数组
import numpy as np
string_np_array = np.array(['mango', 'pear', 'peach'], dtype='<U6')
print(string_np_array[0])
以下是分别输出不同类型字符串数组中每一项的方法:
一、对于列表
string_array = ['apple', 'banana', 'cherry']
for item in string_array:
print(item)
二、对于元组
string_tuple = ('orange', 'grape', 'kiwi')
for item in string_tuple:
print(item)
三、对于 numpy 数组
import numpy as np
string_np_array = np.array(['mango', 'pear', 'peach'], dtype='<U6')
for item in string_np_array:
print(item)
标签:string,tuple,python,np,数组,字符串,array,numpy
From: https://blog.csdn.net/weixin_45498884/article/details/141962956