我的 Python 语言任务解决方案 ROM 每周挑战
一、简介
每周挑战赛由 mohammad s. anwar 组织,是一场友好的竞赛,开发者通过解决两个任务进行竞争。它鼓励所有语言和级别的开发者通过学习、分享和娱乐来参与。
上周我参加了每周挑战 299,解决了任务 1:替换单词。该任务要求开发人员编写一个脚本,当给定一个数组和一个句子时,该脚本会替换句子中以数组中的任何单词开头的所有单词。
在这篇文章中,我将概述任务 1:替换每周挑战 299 中的单词,并给出一个简短的结论。
2. 任务 1:替换单词
给你一组单词和一个句子。编写一个脚本来替换给定句子中以给定数组中的任何单词开头的所有单词。每周挑战 299,任务 1:替换单词示例 1 - 3 说明了给定输入的预期输出。
立即学习“Python免费学习笔记(深入)”;
实施例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 即可获得输出,例如:
实施例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。
replace_words 函数连续将replace_word 应用于数组words 中每个单词的句子。然后它返回转换后的句子。
4. 结论
在这篇文章中,我概述了任务 1:替换《每周挑战 299》中的单词,并给出了我的解决方案。
由于我在解决方案中使用了 split、join 和startswith 等内置方法,因此它很简单、冗长,而且可能很容易理解。如果您是 python 新手、编程新手或不熟悉正则表达式,这种方法可能会对您有所帮助。