Computer Science, asked by vishnuvengad44, 9 months ago

Fill in the gaps in the initials function so that it returns the initials of the words contained in the phrase received, in upper case. For example: "Universal Serial Bus" should return "USB"; "local area network" should return "LAN”

Answers

Answered by sakshi7000
2

Answer:

gghjg fdasf ipplk grwdf ipkn fswrg jbb

Answered by saidulnayan781
5

Answer:

def initials(phrase):

   words = phrase.split()

   result = ""

   for word in words:

       result += word[0].upper()

   return result

Explanation:

Similar questions