📌  相关文章
📜  获取字符串中每个单词的首字母python代码示例

📅  最后修改于: 2022-03-11 14:45:46.556000             🧑  作者: Mango

代码示例1
def abbrevName(name):
    xs = (name)
    name_list = xs.split()
    # print(name_list)

    first = name_list[0][0]
    second = name_list[1][0]

    return(first.upper() + "." + second.upper())
answer = abbrevName("Ozzie Smith")
print(answer)