python应用split函数将单词切分成字母
时间: 2023-02-15 20:48:21 浏览: 283
python中split()方法
,并以空格作为分隔符。
你可以使用split()函数,它可以将一个字符串按照指定的分隔符分割成多个子字符串。
例如:
```
word = "hello"
letters = word.split()
print(letters)
```
输出:
```
['h', 'e', 'l', 'l', 'o']
```
阅读全文
python中split()方法