在Python中,可以使用split()
方法來分割字符串。這個(gè)方法會根據(jù)指定的分隔符將字符串拆分成一個(gè)列表。下面是一些使用split()
方法的例子:
text = "Hello World! How are you?"
words = text.split()
print(words) # 輸出:['Hello', 'World!', 'How', 'are', 'you?']
text = "apple,banana,orange"
fruits = text.split(',')
print(fruits) # 輸出:['apple', 'banana', 'orange']
text = "apple-banana-orange"
fruit_list = text.split('-')
print(fruit_list) # 輸出:['apple', 'banana', 'orange']
splitlines()
方法按行分割:text = "Line 1\nLine 2\nLine 3"
lines = text.splitlines()
print(lines) # 輸出:['Line 1', 'Line 2', 'Line 3']
這些例子展示了如何使用Python的split()
方法來分割字符串。你可以根據(jù)需要選擇合適的分隔符。