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

Python字符串替换字符

  1. s = "The quick brown fox jumps over the lazy dog"
  2. for r in (("brown", "red"), ("lazy", "quick")):
  3. s = s.replace(*r)
  4. print(s)

Output:

  1. The quick red fox jumps over the quick dog

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