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

在 Python 中去除所有开头在Python中的正斜杠上拆分字符串和结尾标点符号

  1. from string import punctuation
  2. s = '.$958-5-Canada,#'
  3. print(s.strip(punctuation))

Output:

  1. 958-5-Canada