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

在标点符号上拆分字符串

  1. string = 'a,b,c d!e.f\ncanada\tjapan&germany'
  2. identifiers = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~\n\t '
  3. listitems = "".join((' ' if c in identifiers else c for c in string)).split()
  4. for item in listitems:
  5. print(item)

Output:

  1. a
  2. b
  3. c
  4. d
  5. e
  6. f
  7. canada
  8. japan
  9. germany

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