阅读量:0
要将字符串存入数组中,可以使用列表(list)数据结构来存储。
下面是使用Python将字符串存入数组的示例代码:
# 创建一个空数组 my_array = [] # 将字符串存入数组 my_string = "Hello, World!" my_array.append(my_string) # 打印数组内容 print(my_array)
输出结果为:['Hello, World!']
在上述示例中,首先创建了一个空数组my_array
。然后,将字符串"Hello, World!"
存入数组中,使用append()
方法将字符串添加到数组的末尾。最后,使用print()
函数打印数组内容。
你可以根据需要将多个字符串存入数组中,只需使用多次append()
方法。