split:
切分字符串,并以列表形式返回
1 str = 'a+b+c+d' 2 str_list = str.split('+') 3 print(str_list) 4 5 #输出结果: 6 # ['a', 'b', 'c', 'd']