标签:匹配 span tab from 字母 接受 指定 空格 基础教程
>>> ‘+‘.join(seq)
>>> ‘This is a test‘.replace(‘is‘, ‘ezz‘)
>>> from string import maketrans >>> table = maketrans(‘cs‘, ‘kz‘)
创建这个表以后,可以将它作为translate方法的参数
>>> ‘this is an incredible test‘.translate(table)
标签:匹配 span tab from 字母 接受 指定 空格 基础教程
原文地址:http://www.cnblogs.com/hellosnow/p/7865201.html