当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

将字符串拆分为多个字符串

  1. s = 'str1, str2, str3, str4'
  2. l = s.split(', ')
  3. print(l)

Output:

  1. ['str1', 'str2', 'str3', 'str4']

该分类下的相关小册推荐: