编写一个 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 的次数

更新日期: 16-03-2021

127 次浏览

开启您的 职业

通过完成课程获得认证

立即开始
广告