首页 > 其他分享 >001Sentence Smash(8kyu)from codewars

001Sentence Smash(8kyu)from codewars

时间:2023-10-26 13:55:39浏览次数:35  
标签:Smash 8kyu sentence codewars 单词 001Sentence words 字符串

Sentence Smash(8kyu)

Write a function that takes an array of words and smashes them together into a sentence and returns the sentence.You can ignore any need to sanitize words or add punctuation,but you should adds spaces between each word.Be careful,there shouldn't be a space at the beginning or the end of the sentence!
定义一个函数,导入一组单词,把它们拼凑成一句话,返回这句话。你不用改正单词或增添标点符号,但在每个单词之间应该加上空格。注意,在这句话的开头或结尾不能有空格。

def smash(words):
    return ' '.join(words)

str.join(sequence)
将序列(sequence)(元组、字典、列表、字符串)中的
元素(字符串)
以指定的字符串(str)连接
生成一个新的字符串(返回值)

标签:Smash,8kyu,sentence,codewars,单词,001Sentence,words,字符串
From: https://www.cnblogs.com/zxc5612301/p/17789227.html

相关文章

  • 好书推荐之--The Smashing Book(众妙之门)
    2012年是自己步入前端的第2年中期,新年的目标是读几本好书 下面自己选了几本来推荐大家好好读一下,虽然有朋友说你是fe老看这个设计和交互相关的书是不是。。。。。呵呵喜欢所以热爱。 ------TheSmashingBook(众妙之门) 1、来历 SmashingMagazine出版的(有的人称这个网页设计网......
  • *** stack smashing detected ***: terminated (还没完成,等待完成)
    在尝试让npc运行字符型马里奥的时候出现如下错误解决方案如下:1.STFW https://www.educative.io/answers/what-is-the-stack-smashing-detected-error(还没完成)......
  • Stack Smashing
    StackSmashing当canary被覆盖后,会call到__stack_chk_fail打印argv[0]这个指针指向的字符串,默认是程序的名字,如果我们把它覆盖为其他的地址时,它就会把其他内存地址的信息......