编写一个 Python 程序,从给定的字符串中去除一个特定长度的子字符串
我们需要编写一个 Python 程序,该程序将从给定的字符串中删除一个特定子字符串
算法
Step 1: Define a string. Step 2: Use the replace function to remove the substring from the given string.
示例代码
original_string = "C++ is a object oriented programming language"
modified_string = original_string.replace("object oriented", "")
print(modified_string)
输出
C++ is a programming language
说明
内置 Python replace() 函数采用以下参数
- Oldstring:您要删除的字符串
- Newstring:您要在 oldstring 位置替换的新字符串
- Count:可选。您要将 oldstring 替换为 newstring 的次数
广告