给定字符串
string1='apple purple orange brown'
我将如何把它变成一个列表
list1=['apple','purple','orange','brown']
我以为我能做到
string1='apple purple orange brown'
list1=[]
for item in string1:
list1.append(item)
但这给了我字符串中每个字符的列表,而不仅仅是单词。有没有办法将字符串按空格分开,然后将其添加到列表中?