Write a function get_initials (the name) that takes a string of a name and returns the initials of the name, in upper case, separated by periods, with an additional period at the end. Input-Output Samples John Q Public J. Q. P. Homer J Simpson H. J. S. Gloria kind of a big deal Tropalogos G. O. O. D. If the argument to the function is the string on the left, then return the string on the right. You don't need to print, since that's the job of wherever the value is returned.
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a function get_initials (the name) that takes a string of a name and returns the initials of the name, in upper case, separated by ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Home » Computers and Technology » Write a function get_initials (the name) that takes a string of a name and returns the initials of the name, in upper case, separated by periods, with an additional period at the end. Input-Output Samples John Q Public J. Q. P. Homer J Simpson H. J.