可以使用Python的split方法來提取字符串。split方法是一個字符串對象的方法,它可以將字符串按照指定的分隔符拆分成一個列表。
以下是使用split方法提取字符串的示例:
# 使用空格作為分隔符拆分字符串
string = "Hello World"
words = string.split(" ")
print(words) # 輸出: ['Hello', 'World']
# 使用逗號作為分隔符拆分字符串
string = "apple,banana,orange"
fruits = string.split(",")
print(fruits) # 輸出: ['apple', 'banana', 'orange']
# 使用默認的分隔符(空格)拆分字符串
string = "This is a sentence"
words = string.split()
print(words) # 輸出: ['This', 'is', 'a', 'sentence']
在上述示例中,使用split方法將字符串按照指定的分隔符拆分成一個列表,然后將列表存儲到一個變量中。可以根據具體的需求選擇合適的分隔符,或者使用默認的分隔符(空格)來拆分字符串。