errorType / 35.py
Beuys's picture
Upload 47 files
e16247a verified
raw
history blame contribute delete
106 Bytes
str = "this is a demo str"
#错误写法:strlist = str.split("")
strlist = str.split(" ")
print(strlist)