pythonz字符串转数组
时间: 2023-06-29 19:17:44 浏览: 92
python将字符串转换成数组的方法
您好,要把字符串转为数组,可以使用 Python 内置函数 `split()`。 `split()` 函数会将字符串按照指定的分隔符分割成一个列表。例如:
```python
str1 = "hello,world,how,are,you"
arr1 = str1.split(",")
print(arr1)
```
输出结果为:
```
['hello', 'world', 'how', 'are', 'you']
```
另外,如果您的字符串中包含多个空格,您也可以使用 `split()` 函数来将其分割成一个列表。例如:
```python
str2 = "hello world how are you"
arr2 = str2.split()
print(arr2)
```
输出结果为:
```
['hello', 'world', 'how', 'are', 'you']
```
需要注意的是,`split()` 函数默认使用空格作为分隔符,如果您的字符串中包含其他的分隔符,需要显式指定分隔符。
阅读全文