题目链接:
戳我
缩写词是由一个短语中每个单词的第一个字母组成,均为大写。例如,CPU是短语“central processing unit”的缩写。
acronym(phrase); phrase是短语参数,返回短语的缩写词
/*请在这里填写答案 */ phrase=input() print(acronym(phrase))
central processing unit
CPU
参考代码:
def acronym(phrase): data=phrase.split() str1="" for i in range(len(data)): str1+=data[i][0].upper() return str1 phrase=input() print(acronym(phrase))
参考链接:
传送门