Answers for "grab the first letter of each string in an array python"

0

get first letter of each word in string python

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)
Posted by: Guest on February-03-2021
0

grab the first letter of each string in an array python

def firstLetterOfEachName():
	names = ["Kevin", "Cameron", "Liam", "Meghan"]
	firstLetter = [x[0] for x in names]
    return firstLetter

answer = firstLetterOfEachName()
print(answer)
Posted by: Guest on October-13-2021

Code answers related to "grab the first letter of each string in an array python"

Python Answers by Framework

Browse Popular Code Answers by Language