python splitted函数
时间: 2023-08-07 16:11:39 浏览: 144
split function
Python中没有内置的splitted函数。也许你是指split函数,它用于将字符串按照指定的分隔符拆分成列表。例如,可以使用空格作为分隔符将句子拆分成单词。下面是一个示例:
```python
sentence = "Hello, world! This is a sentence."
words = sentence.split() # 使用空格作为分隔符
print(words)
```
输出:
```
['Hello,', 'world!', 'This', 'is', 'a', 'sentence.']
```
如果你想按照其他字符进行拆分,可以在split函数中指定分隔符。例如,使用逗号作为分隔符拆分一个包含多个元素的字符串:
```python
elements = "apple,banana,orange"
fruits = elements.split(",") # 使用逗号作为分隔符
print(fruits)
```
输出:
```
['apple', 'banana', 'orange']
```
希望这可以帮助到你!如果你有任何其他问题,请随时提问。
阅读全文