python-刷題--一、從字符串中刪除子串 二、字符串循環右移n位

一、問題描述:從給定的字符串中刪除指定的子字符串,例如將字符串「abcdefgh」中子串「cd」刪除,並顯示結果。python 個人python實現:app #!-*-coding:utf-8-*- import sys,os def delete_substr_method1(in_str, in_substr): start_loc = in_str.find(in_substr)
相關文章
相關標籤/搜索