下面是如何在Python中從字符串創建一個列表的方法。
首先,您需要決定如何切割字符串。例如,每次遇到一個空格。
將' '
單詞分隔符傳遞給每個Python字符串提供的split()
方法。
例子:
phrase = '我要去買牛奶'
words = phrase.split(' ')
print(words)
下面是如何在Python中從字符串創建一個列表的方法。
首先,您需要決定如何切割字符串。例如,每次遇到一個空格。
將' '
單詞分隔符傳遞給每個Python字符串提供的split()
方法。
例子:
phrase = '我要去買牛奶'
words = phrase.split(' ')
print(words)