gpt4 book ai didi

python - 从他们输入的名字中显示一个人的首字母大写字母

转载 作者:行者123 更新时间:2023-11-28 17:48:05 25 4
gpt4 key购买 nike

我需要从程序中得到这个输出。

Write a program which asks the users to enter their full name and then displays, in uppercase, the first initial of each name, separated by full stops.

到目前为止,我已经编写了以下程序:

def main():

name=input("Please Enter Your Name: ")
name_split = name.split()
print(name_split)
for line in name_split:
print(line[0][0].upper())

main()

最佳答案

看来你想要一个简单的字符串连接,你可以这样写:

outputStr = ""
for line in name_split:
outputStr = outputStr + line[0][0].upper() + '.'

print outputStr

如果您只想要一个“.”在字母之间,你可以这样写:

print '.'.join([c[0].upper() for c in name_split])

这只会在每个字母之间放置点。

关于python - 从他们输入的名字中显示一个人的首字母大写字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15211100/

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