摘要: # coding:utf-8 ''' 字符串'abcdfdbcg',输出去掉含‘bc’后的字符 ''' # -*- coding:utf-8 -*- def rm_str(str1, str2): i, j = 0, len(str1) s, e = 0, len(str2) tmp_list = 阅读全文
posted @ 2021-11-16 13:29 keep2021 阅读(118) 评论(0) 推荐(0) 编辑