您的位置 首页 编程知识

我的 Python 语言任务解决方案 ROM 每周挑战

一、简介 每周挑战赛由 mohammad s. anwar 组织,是一场友好的竞赛,开发者通过解决两个任务进行…

我的 Python 语言任务解决方案 ROM 每周挑战

一、简介

每周挑战赛由 mohammad s. anwar 组织,是一场友好的竞赛,开发者通过解决两个任务进行竞争。它鼓励所有语言和级别的开发者通过学习、分享和娱乐来参与。

上周我参加了每周挑战 299,解决了任务 1:替换单词。该任务要求开发人员编写一个脚本,当给定一个数组和一个句子时,该脚本会替换句子中以数组中的任何单词开头的所有单词。

在这篇文章中,我将概述任务 1:替换每周挑战 299 中的单词,并给出一个简短的结论。

2. 任务 1:替换单词

给你一组单词和一个句子。 编写一个脚本来替换给定句子中以给定数组中的任何单词开头的所有单词。 每周挑战 299,任务 1:替换单词

示例 1 – 3 说明了给定输入的预期输出。

立即学习“”;

实施例1

input: @words = ("cat", "bat", "rat")        $sentence = "the cattle was rattle by the battery" output: "the cat was rat by the bat" 
登录后复制

如果 $sentence 中以 $word 开头的任意单词替换为 @words 中的 $word 即可获得输出,例如:

  • “cattle”一词以“cat”一词开头,因此将“cattle”替换为“cat”会将句子转换为“the cat was rd by the battery”。
  • 电池这个词以 the bat 开头,因此用 bat 替换 battery 会将句子转换为 the cat was by the bat。
  • rattle 这个词以rat 这个词开头,因此将rattle 替换为rat,将句子转换为cat was raid by the bat。

实施例2

input: @words = ("a", "b", "c")        $sentence = "aab aac and cac bab" output: "a a a c b" 
登录后复制

实施例3

input: @words = ("man", "bike")        $sentence = "the manager was hit by a biker" output: "the man was hit by a bike" 
登录后复制

3.我的解决方案

def replace_word(sentence, this_word):     return ' '.join([this_word if word.startswith(this_word) else word for word in sentence.split(' ')])  def replace_words(words, sentence):     for word in words:         sentence = replace_word(sentence,                                 word)     return sentence 
登录后复制

我的解决方案使用两个函数:replace_word 和 replace_words。

replace_word 函数使用内置字符串方法 split、startswith 和 join 以及列表理解,将字符串句子中以 this_word 开头的任何单词替换为 this_word。

  • sentence.split(‘ ‘) 使用 (‘ ‘) 作为分隔符将句子拆分为单词列表。
  • 列表理解 [this_word if word.startswith(this_word) else word for word in…] 从分割句子列表中构建另一个单词列表,当单词以 this_word 开头时用 this_word 替换它。
  • ‘ ‘.join(…) 使用 (‘ ‘) 将第二个列表连接成字符串
  • return 返回字符串

replace_words 函数连续将replace_word 应用于数组words 中每个单词的句子。然后它返回转换后的句子。

4. 结论

在这篇文章中,我概述了任务 1:替换《每周挑战 299》中的单词,并给出了我的解决方案。

由于我在解决方案中使用了 split、join 和startswith 等内置方法,因此它很简单、冗长,而且可能很容易理解。如果您是 新手、编程新手或不熟悉正则表达式,这种方法可能会对您有所帮助。

以上就是我的 Python 语言任务解决方案 ROM 每周挑战的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表四平甲倪网络网站制作专家立场,转载请注明出处:http://www.elephantgpt.cn/4839.html

作者: nijia

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

联系我们

联系我们

18844404989

在线咨询: QQ交谈

邮箱: 641522856@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部