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

从 Python 中的字符串中修剪特定的开头和结尾字符

  1. number = '+91 874854778'
  2. print(number.strip('+'))
  3. print(number.lstrip('+91'))

Output:

  1. 91 874854778
  2. 874854778

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