mystr = 'xxxSPAMxxx' mystr.find('SPAM') # 返回收个匹配的位置偏移(3) mystr = 'xxxaaxxaa' mystr.replace('aa', 'SPAM') # 全局替换