split() 方法通过指定分隔符对字符串进行切片,该方法将字符串分割成子字符串并返回一个由这些子字符串组成的列表。
#split("分隔符","分割次数")str_test="this is test"print (str_test.split()) # split()默认以空格为分隔符print (str_test.split('i',1)) # 以 i 为分隔符,分割一次print (str_test.split('s')) # 以 w 为分隔符
京公网安备 11010502049817号