File size: 106 Bytes
e16247a
 
 
 
1
2
3
4
str = "this is a demo str"
#错误写法:strlist = str.split("")
strlist = str.split(" ")
print(strlist)