“Nome curto em Python” Respostas de código

Preencha as lacunas nas iniciais da função, para que retorne as iniciais das palavras contidas na frase recebida, no caso superior.

def get_initials(fullname):
  xs = (fullname)
  name_list = xs.split()

  initials = ""

  for name in name_list:  # go through each name
    initials += name[0].upper()  # append the initial

  return initials
Comfortable Cod

Nome curto em Python

name = input("Please enter a name: ") #Short the name (V.S. Mathur)
short = name.split()
n = [x[0] for x in short[:-1]]
print(*n, short[-1])
tymepas

Nome curto em Python

ankit oraon add name the is ankit
Ankit Oraon

Respostas semelhantes a “Nome curto em Python”

Perguntas semelhantes a “Nome curto em Python”

Mais respostas relacionadas para “Nome curto em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código