缩写词是由一个短语中每个单词的第一个字母组成,均为大写。例如,CPU是短语“central processing unit”的缩写。
acronym(phrase);
phrase是短语参数,返回短语的缩写词
/* 请在这里填写答案 */
phrase=input()
print(acronym(phrase))
central processing unit
CPU
def acronym(phrase):
#切割成列表
words = phrase.split()
str = ''
for word in words:
#每个元素的首位并且转换成大写
str += word[0].upper()
return str
phrase = input()
print(acronym(phrase))
?以上代码全为本人亲自手敲,可能有一些错误和不足之处,如有更好的方法和建议,欢迎您在评论区友善讨论。?