编写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

解释

内置Pythonreplace()函数采用以下参数:

  • Oldstring:您要删除的字符串

  • Newstring:要替换旧字符串的新字符串

  • 计数:可选。您想用新字符串替换旧字符串的次数