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
2
Answer:
gghjg fdasf ipplk grwdf ipkn fswrg jbb
Answered by
5
Answer:
def initials(phrase):
words = phrase.split()
result = ""
for word in words:
result += word[0].upper()
return result
Explanation:
Similar questions
Math,
4 months ago
Math,
4 months ago
Math,
9 months ago
Math,
9 months ago
Social Sciences,
1 year ago