gpt4 book ai didi

python - 输出用户输入的每个单词的首字母

转载 作者:行者123 更新时间:2023-11-28 20:34:02 24 4
gpt4 key购买 nike

我有这个代码

#Ask for word
w = input("Type in a word to create acronym with spaces between the words:")

#Seperate the words to create acronym
s = w.split(" ")
letter = s[0]

#print answer
print(s.upper(letter))

而且我知道我需要一个 for 循环来遍历单词以获取每个单词的第一个字母,但我不知道该怎么做我尝试了很多不同的类型,但我总是出错。

最佳答案

试试这个。它打印每个单词首字母的串联版本。

w = input("Type in a word to create acronym with spaces between the words:")
print(''.join([e[0] for e in w.split()]).upper())

关于python - 输出用户输入的每个单词的首字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49418346/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com